05:04:52 <FFF> hi... anybody knows why <v:link.typolink> is not inserting 'c' before uid (for links to page element like ?id=123#c456)
05:06:21 <FFF> I'm getting just W3C invalid links like ?id=123#456
05:21:08 <rosieres> FFF: shwitch to html5 and your validation problem is gone
05:27:33 <FFF> rosieres: interesting workaround... but this is not compatible with non fluid/flux content elements...
05:29:20 <MartinBless> Good morning. Can I send JS with the ext:vhs "script" viewhelper to the <head> part of a page? https://fluidtypo3.org/viewhelpers/vhs/master/Asset/ScriptViewHelper.html
05:30:13 <rosieres> MartinBless: https://fluidtypo3.org/library/code-examples.html?tx_fluidshare_display%5Bgist%5D=19&tx_fluidshare_display%5Baction%5D=display&tx_fluidshare_display%5Bcontroller%5D=Gist&cHash=ca4eb1b45d865196a7e605f6a14f409f should answer your question
05:34:36 <rosieres> FFF: Dont see a reason why it should not work -> https://github.com/FluidTYPO3/vhs/blob/development/Classes/ViewHelpers/Link/TypolinkViewHelper.php
05:37:28 <MartinBless> rosieres: I don't understand. I'm just starting with Extbase and added ext:vhs. No ext:fluidcontent or flux. I just want the JS goto <head>, not footer.
05:41:42 <rosieres> MartinBless: line 24 is your friend. With v:asset you define it with fluid="TRUE" you set it inline inbetween from v:asset you place your script. What do you want to achieve?
05:42:32 <rosieres> set allowMoveToFooter="0" to not allow moving to the footer ... BTW
05:44:30 <FFF> rosieres: links from standard typo3 elements cointain /page/#c[uid] in the URL and elements processed with css_styled_content starts like id="c[uid]"
05:54:41 <FFF> rosieres: I think that there is some postprocessing of standard TYPO3 Link field which is missing in vhs TypolinkViewHelper... If I add parametr "section:" to <v:uri.typolink configuration="" it works... I'm thinking about extracting uid for "section:" from Link Wizard string using v:iterator.explode... Is this the only way? (except writing custom
07:20:19 <drlimbo> is there a way to Translate flux:form -> flux:field.text?
07:21:32 <rosieres> examine the github typo3org ... should be in there
09:29:07 <pi-phi> hi. I use fluid_content and want the defined icon to be displayed in the preview section (shown in web->page module).
09:29:07 <pi-phi> is there a var or viewhelper which resolves the current resource path? <v:extension.path.resources(extensionName:'myCes',path:'Icons' /> does not work for page-module as the page-module has the url <webroot>/typo3/sysext/cms/layout/db_layout.php instead of <webroot>/typo3/index.php
09:47:33 <trendzetter> does someone has a basic example to set up a simple form and process the submitted data using fluid/extbase?
09:48:21 <trendzetter> i tried the blog_example but it's not working and it seems to be old by now
10:39:44 <jost> Hi! I do my page template rendering with EXT:fluidpages. Now I'd like to access the fluidpages-properties of a page (known by uid) from another page. How do I do that? I can't find any ViewHelper that converts a flexform to an array, nor do I really want to do that...
10:44:20 <jost> Nevermind, ViewHelper <flux:form.data> is what I need
10:52:08 <trendzetter> just some feedback on my own questions an hour ago. I am despartely trying to learn extbase/fluid but I seem to have a problem getting started with basic examples
10:52:44 <trendzetter> the best current example seems to be the pluginextension efempty
10:53:07 <trendzetter> I am studying that now. will look further into that tomorrow
10:55:29 <NamelessCoder> trendzetter perhaps https://github.com/FluidTYPO3/fluidshare is a good example since it has a very specific purpose that's a lot like yours: accepting a form, validating the input (and displaying a list of received+validated items)e
10:55:42 <trendzetter> the most up to date docs seem to be only in german: http://docs.typo3.org/typo3cms/ExtbaseGuide/
10:56:13 <NamelessCoder> yeah, a lot of that going around
10:56:48 <trendzetter> ok. I will look into fluidshare tomorrow. thanks for the tip
10:57:01 <NamelessCoder> it's the simplest example I know of atm
11:45:43 <jost> Ok, I'm retrieving flexform data from another page, and get it parsed using the flex:form.data-ViewHelper. That works fine for most fields, but one field is a FAL-Field referencing an image. How can I get the image ID to render it?
11:46:42 <jost> Usually I use the something like this to get FAL fields: v:content.resources.fal(field: 'file') - but what should I fill into the "field" parameter here?
12:08:51 <jost> Ok, got it - you can use: {v:resource.record.fal(table: 'pages', field: 'image', uid: pageUid)}, where "image" is the name the field has in the flexform.
17:01:51 <FFF> why is flux:form mergeValues param DEPRECATED AND IGNORED? Wouldn't be nice be nice to have possibility of mapping flex fields to real tt_content table columns?