문제

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