09:49:09 <bjo3rn> I think I updated everything to the recent changes but you never know ;)
09:53:02 <vizArt> @Guest33752*4/2^88: try the builder extension (http://typo3.org/extensions/repository/view/builder). Great tool for kickstarting a Fluidcontent/Fluidbackend project.
10:06:16 <Guest|33752> what does the builder do? can you create CE with it?
10:09:51 <benjamin_654> hi, someone using gridelements, TYPO3 6.2 and flux together (all on newest dev versions)? I am updating a old project and have compatibility problems. The "gridelements support" in FluidTYPO3\Flux\Service\ContentService\moveRecord seems to fail with the "colPos" ..
10:15:18 <mrboe> hey Guest|33752 have a look into fluidbootsraptheme there are some good examples how to create FCE https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/tree/development/Resources/Private/Templates/Content
12:49:21 <floxx> i don't get it…what is the right syntax for labels inside of section/object? the name of the field is simpleImage. if i use flux.fullwidthslider.fields.simpleImage and the image is not inside object, label is set correctly. but inside of the object, nothing happens
13:16:37 <soee> randomresult: some VH used to render this file ?
13:39:16 <randomresult> i have an element with a field for a link. as long as i choose an internal page all is good. as soon as i choose a file it has the following link : file:49
13:47:57 <Guest|97419> Hey, is there any documentation how to write your own Providers and/or Controllers?
13:48:14 <xaver> randomresult: problem with FAL 2 - we need a patch - somewhere is a workaround
13:48:52 <Guest|97419> This documentation gives absolutely no examples: http://fluidtypo3.org/documentation/templating-manual/
13:53:13 <BenjaminR> anyone can tell me which core method is used to calculate sorting of mn relations after changes in flexform
14:00:15 <beo|2> Guest|97419: i would say you write controllers exactly like normal extbase controllers
14:04:17 <mrboe> @BenjaminR do you have the problem that you change sorting in FCE and the Col's Content does not switch?
14:05:04 <BenjaminR> Oh wanted to post that to #typo3 - its not a fluidcontent related question
14:05:22 <BenjaminR> Guest|97419: in general http://fluidtypo3.org/documentation/templating-manual/templating/provider-extension/registration-in-php.html
14:33:25 <Guest|97419> Thank you Ben for the example
15:03:02 <Guest|97419> How to check what controller is active? I created Page.html and PageController.php, then I did $this->view->assign() with a text variable
15:03:13 <Guest|97419> but i cannot use it from Page.html
15:03:26 <Guest|97419> so I am not sure if it is PageController active
15:06:32 <BenjaminR> how did you register your pagecontroller?
15:07:04 <BenjaminR> your pagecontroller contains an action called pageAction
16:09:42 <alex_schnitzler> I have a content element that gets properly rendered in the backend and the frontend but I can't choose it from the list of possible content elements
16:09:51 <alex_schnitzler> I guess the configuration section is broken then, right?
16:10:13 <BenjaminR> cant choose means isnt there?
17:43:07 <xaver> beo|2: you can do stuff like this {v:math.division(a: '{file.size}', b: '1024', fail: '0') -> v:math.division(b: '1024', fail: '0') -> v:variable.set(name: 'filesize')}
17:53:41 <benjamin_654> hi, someone using gridelements, TYPO3 6.2 and flux together? I have a bug and would like it to be confirmed before opening a issue ..
18:00:19 <alex_schnitzler> @benjamin_654 Which one?
18:00:25 <alex_schnitzler> I am currently using it together
18:01:55 <benjamin_654> alex_schnitzler: when i drag&drop a content element inside a gridelement disappears from the page view (only in list view visible)
18:02:38 <benjamin_654> alex_schnitzler: this fixed it for me: https://github.com/BenjaminBeck/flux/commit/c41a1a73
18:03:03 <alex_schnitzler> I can't drag&drop the element at all
18:11:22 <benjamin_654> alex_schnitzler: hm .. seems like you have additional other problems, d&d did always work for me ..
18:29:28 <alex_schnitzler> Would be nice to get anyone of the core team on the line to solve a bug with me.
18:30:15 <alex_schnitzler> Somehow the TypeScript that renders the wizard tabs is not applied on all pages
18:49:48 <Guest|66975> Hi! How can I wrap all content elements of a specific column in a <div>?
18:50:17 <Guest|66975> This is wat I tried: https://gist.github.com/anonymous/8965d14691338df2385d But this gives my only empty <div>s
19:23:56 <benjamin_654> Guest|66975: i thing v:content.render also needs a "pageUid" attribute
20:40:56 <Guest|66975> bejamin_654: Thanks! But <v:content.render column="0" /> works. All content elements in column 0 are shown. But how can I wrap each content element in a seperate <div>?
20:59:10 <bjo3rn> Guest|66975 you can use v:content.get to fetch an array of content elements to render manually
20:59:33 <bjo3rn> by iterating over that array you can apply your wrap
21:00:41 <bjo3rn> or even better: v:gontent.get using the 'as' attribute
21:01:13 <bjo3rn> well, actually it's the same as above so strike the 'better'
21:18:39 <xaver> Guest|66975: you would you want to add a standard wrap - you can replace with fluidcontent_core -> csc and you will have full control overyour elements