I'm trying to build a custom Content Element with Flux. It should consist of a repeatable container with a header, a description text, an image and a PDF to download.

When using f:flux.inline.fal I don't manage to get more than one image working.

Here's my code:

<flux:form.section name="formeln">
    <flux:form.object name="formel">
        <flux:field.input name="number" label="Produktnummer"/>
        <flux:field.input name="description" label="Beschreibung"/>
        <flux:field.file name="pdf" label="PDF" allowed="pdf"/>
        <flux:field.inline.fal name="image" label="Bild" multiple="TRUE" maxItems="1" collapseAll="TRUE"  />
    </flux:form.object>
</flux:form.section>

Is there a limitation when using FAL?

有帮助吗?

解决方案

Its currently not possible to use flux:field.inline.fal inside objects. See https://github.com/FluidTYPO3/flux/issues/478

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top