IRC logs

20141218

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

IRC log range: 20141218*

20141218

  • 08:48:22 <batjony_> morning
  • 08:52:30 <batjony_> is there a way view helpers like flux:field.tree to be used outside the backend ?
  • 10:04:21 <batjony_> is there a way view helpers like flux:field.tree to be used outside the backend ?
  • 10:23:39 <jmverges> good morning folks!! it feels like friday
  • 10:33:19 <vizArt> good morning ... friday sounds great :D
  • 14:58:57 <batjony_> is there a way view helpers like flux:field.tree to be used outside the backend ?
  • 15:04:05 <batjony_> NamelessCoder: most likely you are the only one who may know ? :)
  • 15:12:07 <NamelessCoder> Flux writes TCEforms arrays, not HTML.
  • 15:13:40 <batjony_> ok 10x
  • 15:14:50 <batjony_> is there something from VHS which I can use for rendering the sys category tree ?
  • 15:15:01 <batjony_> in the FE
  • 15:15:03 <Guest|16683> Hi
  • 15:15:25 <NamelessCoder> render it manually with recursion if so required
  • 15:15:39 <NamelessCoder> no, there are no ViewHelpers in VHS which render categories
  • 15:16:08 <Guest|16683> Im using Flux 7.0.0 and i need to get a "group" selection field again to select tables. I see the "group" viewhelper got removed and shall be replaced by select,relation,inline or tree but neither of these are "group". How to get this working (cant update to another version)
  • 15:17:11 <Guest|16683> Fluid* not Flux. sorry
  • 15:18:31 <Guest|16683> anyone can help? cant use relation cause i select pages and need the group-like selection
  • 15:21:37 <NamelessCoder> Guest|16683 flux:field.multiRelation will be introduced in Flux 7.2. Until then, you're stuck with flux:field.relation + size + maxItems + table (+multiple)
  • 15:22:46 <Guest|16683> Testing it right now
  • 15:24:35 <Guest|16683> that works indeed but its not the selection i was looking for. Thanks anyways.
  • 15:27:33 <Guest|16683> can i somehow get the page-selection thing into the relation or select viewhelper by configuration?
  • 15:28:34 <NamelessCoder> no, it requires a new component. See https://github.com/FluidTYPO3/flux/commit/f25c708bd0b55a15319a8dc365672be68845e002
  • 15:34:22 <Guest|16683> Okey. Thanks for your time.
  • 15:43:50 <erredeco> Hi there... a little question about Fluid Content Elements
  • 15:44:51 <erredeco> Is it possible to add after each element the feedit "Pencil" icon to let the editors edit it like in the "text w/images" element?
  • 15:49:26 <BenjaminR> Hi guys - not even sure someone still knows me ;/
  • 16:16:06 <erredeco> ?
  • 16:16:59 <Akii> nobody knows you benjaminr
  • 16:17:14 <Akii> ok, chanserv does
  • 16:17:15 <Akii> :)
  • 16:17:17 <BenjaminR> i expected that
  • 16:17:19 <BenjaminR> :)
  • 16:17:26 <Akii> so you've got that going for you, which is nice
  • 16:18:25 <Akii> so you've been away? :D
  • 16:19:11 <BenjaminR> no.
  • 16:20:44 <BenjaminR> not for people who care :)
  • 16:22:07 <Akii> well you're back now, that's what matters right? ^^
  • 16:23:38 <BenjaminR> i hope so :)
  • 16:39:15 <erredeco> plz, would someone kindly answer me, if it is not a problem?
  • 16:43:14 <BenjaminR> erredeco please repeat your question
  • 16:45:37 <erredeco> Is it possible to add after each element the feedit "Pencil" icon to let the editors edit it like in the "text w/images" element?
  • 16:45:55 <erredeco> I'm talking about Flexible Content Elements
  • 16:45:57 <erredeco> sry
  • 16:47:52 <BenjaminR> oh i am sorry but i never implemented feedit in typo3
  • 16:59:13 <mloew> Hi everyone!
  • 16:59:48 <mloew> I'm using fluidcontent_core and can't seem to get it to render my custom fces within my provider (skin_) extension. Anyone know why?
  • 17:04:26 <BenjaminR> Did you add the content renderer definition in LocalConfiguration?
  • 17:07:09 <BenjaminR> ['FE']['contentRenderingTemplates'] = array('fluidcontentcore/Configuration/TypoScript/',)
  • 17:07:41 <mloew> I don't think so
  • 17:08:16 <mloew> is there a way to add that without manually changing localconfiguration?
  • 17:08:58 <BenjaminR> adding it to additionalconfiguration :)
  • 17:09:23 <BenjaminR> https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Migrations/Configuration/AdditionalConfiguration.1414852807.php
  • 17:18:15 <BenjaminR> mloew - you need to add that to localconfiguration or additionalconfiguration. there is no other way i am used to
  • 17:21:15 <mloew> okay, thank you very much =) I realised, I can add that line to my ext_tables.php to get it to override the value!
  • 17:22:02 <BenjaminR> great its solved for you