09:44:45 <LarsP> Good Morning, I have updated to the new versions of flux, fluidcontent and vhs (dev-staging). With older versions, FluidContent wrote "Namespace.UpperCamelCaseExtensionName:Template.html" into the the Database field "tx_fed_fcefile". But in the current dev-stating version it writes "ext_name:Template.html" into the database. The FluidContent elements are registered with "\FluidTYPO3\Flux\Core::registerProviderExtensionKey('Namespace.UpperCamelCaseExtensionName
09:44:56 <LarsP> Does somebody has the same problem?
10:40:40 <erredeco> [OT] I need a little help with the RTE I added to an extension developed by my team
10:41:14 <erredeco> I see here how to add the RTE to a field in the extension:
11:45:49 <erredeco> this works <v:render.record pageUid="2" record="{uid:51}" />
11:46:33 <LarsP> pageUid attribute should not be necessary
12:24:37 <ndee> hi overlords, regarding this: https://github.com/FluidTYPO3/documentation <-- is there an easy way to create a PDF of the whole repo?
12:34:07 <marteadrian> hi all. i'm using latest git develop versions of the extensions. I'm trying to create a sluider, which has background-image, an image and some text fields per slide. Now i tried following configuration: <flux:form.object name="slide">
13:06:44 <gbod> erredeco: I think marteadrian would be happier, if we show him https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/development/Resources/Private/Templates/Content/Carousel.html He really likes links to that extension. :D
13:43:25 <marteadrian> so here you can see where this debug output from above came from
13:44:02 <marteadrian> but anyway i'll check examples you sent me, if i don't get it i'll be glad to come back to you guys then again :)
13:48:34 <marteadrian> ahh.. and i'll use Gist next time...
14:13:33 <william_klee> hi all, i have a problem about hidding custom fluid content's header.
14:13:44 <william_klee> When i create a custom fluid content, i have a field "Header" and i filled it.
14:13:56 <william_klee> But this header field is always displayed in front page, and i want to have choose to hide or to show it.
14:14:14 <william_klee> I did some google search and tried to add custom css class for header ("appearance" tab then "header" tab), but i cant see class that i defined in typoscript there.
14:14:47 <william_klee> So i want to ask if there a way to do that with fluid viewhelper ?
14:16:17 <gbod> william_klee: you build the header with <flux:field.input/>? Or is it the standard CE header?
14:28:29 <william_klee> i created a custom content element with fluidcontent.
14:29:26 <william_klee> i didnt created the header field, this field is always displayed for anycontent
14:45:12 <marteadrian> @gbod & erredeco: I found the problem. I used as name for the flux.field something like "settings.xy". Now i just use "xy"and it works. Is that behaviour explainable?
14:46:53 <gbod> william_klee: It's the standard header. https://worksonmymachine.org/blog/custom-rendering-of-default-headlines-in-fluidtypo3
14:50:53 <gbod> marteadrian: Crystal Ball is on vacation. Please, show some code!
14:54:11 <marteadrian> check my code from above at 12:33:41 PM. If i use in side an object field names separated with a dot, e.g. <flux:field.file name="settings.image"> i don't get that on frontent with e.g. <f:image src="{slide.slide.settings.backgroundImage}" />. But i i use a name without a dot, e.g. flux:field.file name="image"> i get it correctly with <f:image src=
14:58:34 <NamelessCoder> marteadrian fields inside objects and inside containers should not use prefixes
14:58:59 <NamelessCoder> root-level fields, sections and containers should
15:01:15 <NamelessCoder> william_klee are you using fluidcontent_core? If yes, change the layout in elements' templates to a layout that does not render the header. If you use css_styled_content you have to create a condition in the header cObject that gets rendered, to match the selected tx_fed_fcefile value
15:39:13 <william_klee> gbod : thanks you :) that works, cant believe that could me so simple
17:41:24 <Defos> Hey lads. I'm currently upgrading VHS, is v:page.info gone?
17:47:51 <Defos> update: it seems like the "as" param doesnt work anymore: <v:page.info as="pageInfo"/><f:debug>{pageInfo}</f:debug> returns NULL
17:51:54 <Defos> it works if youre inside the tag like <v:page.info as="pageInfo"><f:debug>{pageInfo}</f:debug></v:page.info> but it's more handy the other way
18:15:09 <Defos> Another thing: A lot of my content elements, which were inserted in different content areas set by flux (just like in the twitter bootstrap well example), are gone and now shown in the "Relations" Tab in the Typo3 Backend. When I edit one of those content elements, it says "Invalid value("18181") under Column.
18:15:43 <Defos> Oh and Flux Debug says: Flux Debug
18:15:43 <Defos> No content template found in "tt_content:55"
18:19:10 <Defos> Gotta go, leaving this open in case someone has an idea.
19:38:50 <Guest|38654> Please, what's the best method to get prev/next record links in Fluid?
20:17:41 <Guest|38654> Tnx gbod_ now I check it... but I found this solution: http://lists.typo3.org/pipermail/typo3-project-typo3v4mvc/2012-January/011460.html
20:18:34 <Guest|38654> That actualized, to get the next record link use: <f:link.action action="show" controller="Product" arguments="{product : '{v:iterator.next(needle: product, haystack: products)}'}">next</f:link.action>