08:48:49 <Guest|9138> now a other question.. how i make a textare? <f:form.textarea name="myTextArea" value="This is shown inside the textarea" /> doesn't works.. :-(
09:40:39 <batjony> hi bjo3rn, i saw that you wrote me something yesterday about prev/next, so I have more than one pages, its not only one, and still if I use v:page.menu.browse like NamelessCoder suggested me, i do not see any prev/next, only first and last
09:41:16 <bjo3rn> how many pages are there in that subtree?
09:42:30 <bjo3rn> and did you set pageUid of the parent page?
09:42:38 <batjony> i think the issue, is that - actually i have a general site menu, and then a custom content element which should has his own menu/navigation - prev/next, the custom CE renreds pages from a particular sys folder
09:43:07 <bjo3rn> you'll have to set pageUid of the sysfolder then
09:44:57 <batjony> ya, but i have set them correctly with the but the doktypes argument
09:45:30 <bjo3rn> I don't think this will have any effect in this vh
09:45:47 <bjo3rn> could you try adding some standard pages to see if it works then please?
09:48:46 <batjony> but actually what I try to do, is just to get the uids of first/last/prev/next - and create my own links like for example, if the content element is set in a page with ID 11, and the sys folder contains pages with IDS {17, 18, 19, 20}, my content element renders by default the first page which is with ID 17, and the next link should be http://brandhouse/index.php?id=11&bid=18
09:49:38 <bjo3rn> sure, you can do that. but we have to fetch the correct rootline anyway.
09:49:42 <batjony> so the idea is the user to stay always on page with ID 11, but the content elelement to render internally the pages from this sub folder
09:58:08 <batjony> bjo3rn: no the same, all caches clear, i think the problem is that we actually have two navigations, so page where the CE is set is with ID 11 and the current typo3 page object points to this ID; the CE has his own pagination and it can not create prev/next, because it does not know what is the current page
09:58:45 <bjo3rn> but at some place you tell the ce the id of that sysfolder?
09:59:41 <batjony> ya, but it does not know on which page of this sysfolder is currently rendered
10:00:06 <batjony> this helper does have an option to set which is the current page
10:00:17 <bjo3rn> but that doesn't matter. the pageUid to pass to the browse vh is the pid of the sysfolder
10:02:15 <batjony> the sys folder contains pages with IDS {17, 18, 19, 20.....}, i do not set anywhere which is the current ID used, so how it can define the prev/next
10:02:53 <mrboe> @bjo3rn path="NULL" is deprecated
10:03:38 <bjo3rn> batjony the vh has an argument pageUid which can be set to the pid of the subtree's parent page. so please set pageUid to the pid of your sysfolder.
10:07:11 <bjo3rn> like iterator.first, iterator.last, iterator.slice
10:07:43 <bjo3rn> the question is how to propagate the current pid of your subfolder page
10:08:09 <batjony> https://gist.github.com/momchilgoos/9b579a0653fbe757f05d this is the way I get the first page, i have tried to use iterator.next but without any success
10:09:07 <batjony> i am not sure if I can use the prev/next iterators, at least i do not know how
10:09:14 <bjo3rn> you will get the last one the same using iterator.last ofc. the 'next' of 'prev' pages require some logic and ofc the pid of the currently rendered page of the subfolder
10:13:45 <batjony> you mean to extend somehow the current the existing view helper 'v:page.menu.browse', to add a possibility to set additional argument 'currentPid', and to implement a log which will use the argument 'currentPid' instead of automatically getting it by the typo3 page object
11:01:42 <batjony> bjo3rn: nice it works, so now I suppose I should use it like <v:page.menu.browse pageUid="{sysFolderUid}" currentUid="{currentUid}" as="pageItems" deferred="1"> read prev/next from {pageItems} and create my own links like http://site/index.php?id=....&bid=...
11:11:46 <bjo3rn> (and first my branch has to be merged into development ofc)
11:18:26 <batjony> bjo3rn: because if I not use deferred="1", the viewhelper outputs the menu with links like http://site/index.php?id=21 , i need to keep the current global page ID and add an additional url param
11:23:54 <batjony> when deferred="1" is used, there is no output, so I just can use the created pagination array
11:24:47 <bjo3rn> hm. that sounds like another bug bc there shouldn't be any output when as="" is used
11:25:29 <batjony> ya there is definitely output if as="" is used
15:24:42 <batjony> BenjaminR: i see there is a method public function getMenu() which is the thing I need, but could you give an example how can I call v:page.menu with particular arguments passed with this "objectmanager->get()" in the content controller
15:25:03 <BenjaminR> batjony - no i am sorry - not right now
15:25:32 <BenjaminR> but google should give you enough hints how to get a object with objectmanager
15:25:34 <BenjaminR> and then its just a question of $pageViewHelper->getMenu()
15:51:56 <batjony> BenjaminR: do you have any idea why $vhsPageMenu = $this->objectManager->get('FluidTYPO3\Vhs\ViewHelpers\Page\Menu\MenuViewHelper'); throws error "Could not analyse class:FluidTYPO3\Vhs\ViewHelpers\Page\Menu\MenuViewHelper maybe not loaded or no autoloader?"
15:52:07 <batjony> also tried with \\ without success
15:54:55 <Guest|42262> hi guys. i probably found a little bug concerning fluid templates mixed with gridelements while move and copy
16:34:58 <randomresult> come on BenjaminR would be fun.
19:29:00 <ltrebing> I’m still somewhat confused about how EXT:fluidcontent_core configures frontend rendering
19:31:27 <ltrebing> its static TS sets tt_content.list to a basically empty COA, but if when it is included via the static include thingy (as opposed to INCLUDE_TYPOSCRIPT), it looks much more complete
19:31:56 <ltrebing> and I can’t seem to locate the magic that is responsible for this difference