Re: [TYPO3-english] TYPO3 8.7 and Flexform

2020-02-13 Thread Christian Platt
Hi Christian your are right. In 8.7 also the extensionbuilder creates in Configuration/TCA/Overrides/… from my test Extension: $pluginSignature = str_replace('_', '', 'test') . '_fwplugin'; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform'

Re: [TYPO3-english] No one here anymore?

2020-02-13 Thread Christian Tauscher
Am 17.01.2019 um 15:23 schrieb Tony Lush: >>> since this NGs seems to be rarely visited, where are you all gone for > communication about TYPO3? It became quite silent... sad. > Most communications is on typo3.slack.com. I tryed slack last year, but gave up after 2 weeks. slack ist too confus

Re: [TYPO3-english] TYPO3 8.7 and Flexform

2020-02-13 Thread Christian Tauscher
Am 15.01.2019 um 13:40 schrieb je...@donslund.net: > Hi > > I can seem to find a working tutorial on how to use Flexform in TYPO3 8.7. > ... I stuck at the same point but found the solution: In TCA/Overrides/tx_my_domainmodel_mytable.php: $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_

Re: [TYPO3-english] widget.paginate works not as expected

2020-02-13 Thread Mark Boland
Hi Christian, you must stay with Extbase and create a custom Extbase Query [1]. It doesn't work with SQL statements, because the Paginate Widget relies on the Query object to create a LIMIT statement all by itself. Cheers, Mark [1] https://docs.typo3.org/m/typo3/book-extbasefluid/master/en-u

[TYPO3-english] widget.paginate works not as expected

2020-02-13 Thread Christian Tauscher
Hello! In my extention-Template I use ... in my controller: $images = $this->myRepository->getAll(); ...assign to images so the widget renders as Expected, mutliple pages. 10 Images per Page, page numbers as expected. if I change to this: Controller: $images = $this->myRepository->