IRC logs

20160317

Logs from channel #fedext on freenode - our official support channel.

IRC log range: 20160317*

20160317

  • 07:21:55 * danielkoch NamelessCoder: Missed your answer for this one: https://fluidtypo3.org/community/irc-logs.html#03:39:13You mean like this:
  • 07:22:15 <danielkoch> https://fluidtypo3.org/community/irc-logs.html#03:39:13
  • 07:22:43 <danielkoch> You mean like this: {{key}, {0: itemSectionObject})}
  • 07:23:04 <danielkoch> And passing key=„key“ in the f:for loop
  • 07:25:04 <danielkoch> Another thing I have to migrate is, again in a f:for loop:
  • 07:25:22 <danielkoch> <f:for each="{columnClass->fed:explode(glue: '-')}" as="className" iteration="iteration">
  • 07:25:35 <danielkoch> <f:for each="{fed:data.func(func: 'explode', arguments: {0: '-', 1: columnClass})}" as="className" iteration="iteration">
  • 08:46:48 <MarcusM> Hi
  • 08:47:59 <MarcusM> One quick Question ;) is it possible to define the name Label in List View of TYPO3 with a flux field defined in my Template
  • 08:48:49 <cweiske> no
  • 08:49:29 <MarcusM> ok too bad but thanks
  • 08:49:50 <cweiske> MarcusM, we use a TceMain hook that saves values from fluidcontent flexform into a normal column
  • 08:49:56 <cweiske> and then use this one
  • 08:50:31 <NamelessCoder> you can actually prefix your field names with "tt_content.foobar" to write into "foobar" of the record itself, if the table is "tt_content" ;)
  • 08:50:42 <cweiske> what?
  • 08:50:48 <NamelessCoder> yessir
  • 08:50:54 <cweiske> had I known this 3 months earlier
  • 08:51:00 <cweiske> I wouldn't have needed my hook
  • 08:51:11 <NamelessCoder> it's buried way deep in the docs (I know, it's an issue...)
  • 08:52:05 <NamelessCoder> so MarcusM the answer is: yes, you can, but it will cause the record's title/header to actually be overwritten (which includes in FE if title is rendered)
  • 08:52:43 <MarcusM> ok just have to define not visible
  • 08:52:47 <MarcusM> thank you very much
  • 08:53:23 <NamelessCoder> you're welcome