Package

ViewHelpers

ViewHelper Documentation

flux:field.inline.fal

Repeats rendering of children with a typical for loop: starting at index $from it will loop until the index has reached $to.

To get the file references, assigned with that field in a flux form, you will have to use EXT:vhs but there are two different ViewHelpers for fluidpages templates and fluidcontent elements.

Example how to get the first file reference from a fluidcontent element, for the flux field named "settings.files":

    {v:content.resources.fal(field: 'settings.files')
            -> v:iterator.first()
            -> v:variable.set(name: 'settings.files')}

And now the example how to get the first file reference from a fluidpages template, for the flux field named "settings.files":

    {v:page.resources.fal(field: 'settings.files')
            -> v:iterator.first()
            -> v:variable.set(name: 'settings.files')}

Arguments

name string

Name of the attribute, FlexForm XML-valid tag name string

label string

Label for the attribute, can be LLL: value. Optional - if not specified, Flux tries to detect an LLL label named "flux.fluxFormId.fields.foobar" based on field name, in scope of extension rendering the Flux form. If field is in an object, use "flux.fluxFormId.objects.objectname.foobar" where "foobar" is the name of the field.

default string

Default value for this attribute

required boolean

If TRUE, this attribute must be filled when editing the FCE

exclude boolean

If TRUE, this field becomes an "exclude field" (see TYPO3 documentation about this)

transform string

Set this to transform your value to this type - integer, array (for csv values), float, DateTime, Tx_MyExt_Domain_Model_Object or ObjectStorage with type hint. Also supported are FED Resource classes.

enabled boolean

If FALSE, disables the field in the FlexForm

requestUpdate boolean

If TRUE, the form is force-saved and reloaded when field value changes

displayCond string

Optional "Display Condition" (TCA style) for this particular field

inherit boolean

If TRUE, the value for this particular field is inherited - if inheritance is enabled by the ConfigurationProvider

inheritEmpty boolean

If TRUE, allows empty values (specifically excluding the number zero!) to be inherited - if inheritance is enabled by the ConfigurationProvider

clear boolean

If TRUE, a "clear value" checkbox is displayed next to the field which when checked, completely destroys the current field value all the way down to the stored XML value

variables anySimpleType

Freestyle variables which become assigned to the resulting Component - can then be read from that Component outside this Fluid template and in other templates using the Form object from this template

validate string

FlexForm-type validation configuration for this input

size integer

Size of the selector box

multiple boolean

If TRUE, allows multiple selections

minItems integer

Minimum required number of items to be selected

maxItems integer

Maxium allowed number of items to be selected

itemListStyle string

Overrides the default list style when maxItems > 1

selectedListStyle string

Overrides the default selected list style when maxItems > 1 and renderMode is default

renderMode string

Alternative rendering mode - default is an HTML select field but you can also use fx "checkbox" - see TCA select field "renderMode" attribute

table string

Define foreign table name to turn selector into a record selector for that table

condition string

Condition to use when selecting from "foreignTable", supports FlexForm "foregin_table_where" markers

mm string

Optional name of MM table to use for record selection

foreignField string

The foreign_field is the field of the child record pointing to the parent record. This defines where to store the uid of the parent record.

foreignLabel string

If set, it overrides the label set in TCA[foreign_table]['ctrl']['label'] for the inline-view.

foreignSelector string

A selector is used to show all possible child records that could be used to create a relation with the parent record. It will be rendered as a multi-select-box. On clicking on an item inside the selector a new relation is created. The foreign_selector points to a field of the foreign_table that is responsible for providing a selector-box this field on the foreign_table usually has the type "select" and also has a "foreign_table" defined.

foreignSortby string

Define a field on the child record (or on the intermediate table) that stores the manual sorting information.

foreignDefaultSortby string

If a fieldname for foreign_sortby is defined, then this is ignored. Otherwise this is used as the "ORDER BY" statement to sort the records in the table when listed.

foreignTableField string

The field of the child record pointing to the parent record. This defines where to store the table name of the parent record. On setting this configuration key together with foreign_field, the child record knows what its parent record is - so the child record could also be used on other parent tables.

foreignUnique string

Field which must be uniue for all children of a parent record.

symmetricField string

In case of bidirectional symmetric relations, this defines in which field on the foreign table the uid of the "other" parent is stored.

symmetricLabel string

If set, this overrides the default label of the selected symmetric_field.

symmetricSortby string

This works like foreign_sortby, but defines the field on foreign_table where the "other" sort order is stored.

localizationMode string

Set whether children can be localizable ('select') or just inherit from default language ('keep').

localizeChildrenAtParentLocalization boolean

Defines whether children should be localized when the localization of the parent gets created.

disableMovingChildrenWithParent boolean

Disables that child records get moved along with their parent records.

showThumbs boolean

If TRUE, adds thumbnail display when editing in BE

collapseAll boolean

If true, all child records are shown as collapsed.

expandSingle boolean

Show only one expanded record at any time. If a new record is expanded, all others are collapsed.

newRecordLinkAddTitle boolean

Add the foreign table's title to the 'Add new' link (ie. 'Add new (sometable)')

newRecordLinkPosition string

Where to show 'Add new' link. Can be 'top', 'bottom', 'both' or 'none'.

useCombination boolean

For use on bidirectional relations using an intermediary table. In combinations, it's possible to edit attributes and the related child record.

useSortable boolean

Allow manual sorting of records.

showPossibleLocalizationRecords boolean

Show unlocalized records which are in the original language, but not yet localized.

showRemovedLocalizationRecords boolean

Show records which were once localized but do not exist in the original language anymore.

showAllLocalizationLink boolean

Defines whether to show the 'localize all records' link to fetch untranslated records from the original language.

showSynchronizationLink boolean

Defines whether to show a 'synchronize' link to update to a 1:1 translation with the original language.

enabledControls anySimpleType

Associative array with the keys 'info', 'new', 'dragdrop', 'sort', 'hide', delete' and 'localize'. Set either one to TRUE or FALSE to show or hide it.

headerThumbnail anySimpleType

Associative array with header thumbnail.

foreignMatchFields anySimpleType

The fields and values of the child record which have to match. For FAL the field/key is "fieldname" and the value has to be defined.

foreignTypes anySimpleType

Overrides the "types" TCA array of the target table with this array (beware! must be specified fully in order to work!). Expects an array of arrays; indexed by type number - each array containing for example a "showitem" index with a CSV list of field names to be shown when inline-editing the related record.

levelLinksPosition string

Level links position.

allowedExtensions string

Allowed File Extensions .

disallowedExtensions string

Disallowed File Extensions .

ViewHelper Resources

Schema Resources