07:25:52 <saschaschmidt> is there a flux version that already works on typo3 8?
07:26:04 <saschaschmidt> (or at least works somehow)
07:26:31 <saschaschmidt> I'd just like to create some grid content elements
07:31:29 <NamelessCoder> yes, git branch development
09:16:56 <drlimbo> is there a way to get flux:field Values from another Page with PageUid? i tried with v:page.info and i can see the data stored as xml, but is there a nicer way?
09:17:19 <drlimbo> cweiske: we already talked about Page- and Subpage-Settings and inheritance
09:18:12 <cweiske> no. we resorted to "normal" table extensions via ext_tables.sql and TCA
09:18:30 <cweiske> that's easier than manually parsing the settings XML for each page
09:19:21 <drlimbo> just found a "solution" here what seems to work: http://stackoverflow.com/questions/28942701/access-tx-fed-page-flexform-in-fluidtemplate
09:20:30 <cweiske> inheriting means looking up the tree until there is something in the field
09:21:24 <drlimbo> yes, but i dont need a real inheriting, a "look on the root-page" for the settings
09:21:54 <drlimbo> now i use v:page.rootline and use the 0 value from the array what is the root-page of the current page
09:22:32 <drlimbo> i'd like to use some Settings (like Template-Color, Footer Copyright etc.) for every Root-Pages stored in the Page-Settings so the user can change them easily
09:31:12 <drlimbo> is there a way to show flux:field's on a special "Tab" of the Page-Settings instead of "Page Configuration"?
09:32:34 <cweiske> you could change the table's TCA configuration, yes
09:35:14 <drlimbo> so, for this im extending the pages table with my own fields, right?
09:35:20 <NamelessCoder> or use TS to create your component, whatever floats your boat
09:35:25 <drlimbo> and i can use this values in Fluid Templates after?
09:35:59 <NamelessCoder> you can put it in the pages table and make TCA (outside scope of Flux and FluidTYPO3)
09:36:23 <NamelessCoder> or you can make custom Flux components or create factory ones using TS arrays which you can then put wherever you want them
09:37:41 <drlimbo> mhh, looks like i have to do it like that =)
09:41:22 <NamelessCoder> if you want to investigate that: modify(array $structure) on abstract form component (overridden in subclasses) accepts an array of such TS settings and allows you to create new components or override properties of existing ones (properties like "items" on selects)
09:41:50 <NamelessCoder> defining something in plugin.tx_flux.forms.$formId.* lets you manipulate that
09:42:21 <drlimbo> thanks NamelessCoder, i'll have a look at that
10:14:52 <drlimbo> is it possible that flux:form.sheet doesn't work with Typo3 7.6.4?
10:15:21 <drlimbo> after saving i get an error PHP Warning: Illegal string offset ..../typo3/sysext/backend/Classes/Form/FormDataProvider/TcaFlexProcess.php line 466
10:20:24 <NamelessCoder> should work, haven't checked with that version personally
10:21:02 <drlimbo> i added a basix flux:form with a sheet
10:21:18 <drlimbo> at first load, it looks nice but after saving, i get a php warning
10:21:37 <drlimbo> then i have to clear tx_fed_page_flexform field for this page, and it works again
10:22:00 <NamelessCoder> and keeps working after that?
10:23:37 <NamelessCoder> not sure what it is then, but I suspect FormEngine. Wouldn't be the first time it changes and makes us suffer :)
10:24:01 <drlimbo> ah, with ONE flux:form.sheet it works well
10:24:12 <drlimbo> but if I add another sheet, it crashes after saving
10:27:12 <drlimbo> the xml looks good NamelessCoder: http://nopaste.euirc.net/index.php?id=a86d3fb3e5
10:27:25 <drlimbo> PHP Warning: Illegal string offset 'headerSlogan' is a bit weird
10:28:48 <drlimbo> if i remove the Fields, i get the Error: PHP Warning: Invalid argument supplied for foreach() in.../typo3/sysext/backend/Classes/Form/FormDataProvider/EvaluateDisplayConditions.php line 171
10:28:56 <drlimbo> so something with parsing the XML looks wrong
10:45:18 <drlimbo> is there a way to manage multiple links (like a link-list) in a Flux Form?