09:34:35 <misiak> hi, i have one question again :) can i render content elements (just bodytext) in BE which i get from flux:flexform.field.select as comma separated uids? I can change it to array now, but cannot render them in BE. Thnx
10:08:57 <misiak> I meant classic via classic Page mode on page content.
11:08:10 <twirsing> hello, i experience a problem when copying and pasting content element within flux:content elements. The copied item is alway on top no matter where I paste it. Is this a known bug?
11:11:16 <twirsing> the problem occurs under flux 7.0.0, fluidcontent 4.0.0 and both t3 6.1.8dev and t3 6.02rc1
12:53:21 <misiak> Hi, any idea how to display bodytext from content element (tt_content) on page in backend via standard Page module, in fedext FCE, by comma list of uids or array? Thnx.
13:27:41 <NamelessCoder> content getting is for FE only, but you should be able to use the field values.
13:28:52 <misiak> yeah i get the field values...but i have: <flux:flexform.field.select name="weekmenu" label="PONUKA" size="15" table="tt_content" condition="AND tt_content.pid=13" maxItems="3" minItems="1" />
13:29:17 <misiak> so it returns only comma separated list of uids :)
13:29:54 <NamelessCoder> but why are you then attempting to access the value in BE?
13:33:06 <misiak> I want to display to my customer text which he selected when he click on page...so he dont need to go edit FCE to display it.
13:34:03 <NamelessCoder> so this is in the Preview section, right?
13:35:42 <misiak> And this solutions is for selecting content elements stored in different sysfolder, inside FCE.
13:38:33 <NamelessCoder> the problem is that content.get will use TSFE for selecting content so it won't work in BE
13:38:50 <NamelessCoder> there are two ways you could do this:
13:39:08 <NamelessCoder> 1) Create a ViewHelper of your own, add your own namespace and use that ViewHelper which then manually selects the DB record you need.
13:39:34 <NamelessCoder> 2) Override Fluidcontent's Provider with one you create and make it aware of your element type to insert custom variables as needed
13:39:45 <NamelessCoder> the first is by FAR the easiest and most compatible
13:40:03 <misiak> yeah i think so...i ll try the number 1)
13:40:05 <NamelessCoder> the second one allows you to take control over many more things than just the variables
13:40:20 <NamelessCoder> here's the catch re: your viewhelper:
13:40:31 <randomresult> @NamelessCoder i changed the namespaces in the ext to FluidBT - hope this is ok like this. we are now checking all elements again... some of the old ones need to be rewritten...
13:40:31 <NamelessCoder> never, ever, ever use something like that in the frontend
13:41:14 <NamelessCoder> viewhelpers which make SQL queries are dangerous and you should simply make an "if ('FE' === TYPO3_MODE) { return ''; } start of your render() methond in viewhelper
13:47:24 <randomresult> what about flux etc.? will there be a release tomorow?
13:51:36 <twirsing> i experience a problem when copying and pasting content element within flux:content elements. The copied item is alway on top no matter where I paste it. Is this a known bug?
13:59:32 <randomresult> maybe i find the time to report. :)
15:20:03 <Romanko> Hi, I just built an provider extension using builder extension (in shell) and in typo3 BE (6.1.7) edit page properties get an error: EXT:wx_templates/Resources/Private/TemplatesPage/
15:20:46 <Romanko> so its looking for templates in non existing folder /Private/TemplatesPage/, there is a missing slash, any hints?
20:36:36 <randomresult> i changed a pagetemplate to take another layoutfile. from layout "Page" to "SideBar" - then i changed the name of the layout-file to SideBar as well... still this template uses Page as Layout...