Fluid inline version of f:cObject with array in data

5.2k Views Asked by At

I try to form the following Fluid Viewhelper to a inline version:

<f:cObject typoscriptObjectPath="lib.infoBox" data="{pageUid: '{data.uid}', colPos: '7'}"/>

I tried a lot of things but what I thought it should be:

{f:cObject(typoscriptObjectPath: lib.infoBox, data: {pageUid: '{data.uid}', colPos: '7'})}

But unfortunately its not working. Whats the right line here? I need to put it into an f:if to check if its empty.

Thanks.

1

There are 1 best solutions below

1
On BEST ANSWER

Solution:

{f:cObject(typoscriptObjectPath: 'lib.infoBox', data: '{pageUid: \'{data.uid}\', colPos: \'7\'}')}

Note: the quotes in the inner values of the data array must be escaped.