form.translateLabelSelect

Extends the usual select view helper, but additionally translates the select option labels

Example:

<belog:form.translateLabelSelect property="number" options="{settings.selectableNumberOfLogEntries}" optionLabelPrefix="numbers"

Will lookup number.200 (or whatever optionValue is given) in locallang database

Arguments

additionalAttributes

DataType
mixed
Required
true
Description
Additional tag attributes. They will be added directly to the resulting HTML tag.

data

DataType
mixed
Required
true
Description
Additional data-* attributes. They will each be added with a “data-” prefix.

name

DataType
string
Required
true
Description
Name of input tag

value

DataType
mixed
Required
true
Description
Value of input tag

property

DataType
string
Required
true
Description
Name of Object Property. If used in conjunction with <f:form object=”…”>, “name” and “value” properties will be ignored.

class

DataType
string
Required
true
Description
CSS class(es) for this element

dir

DataType
string
Required
true
Description
Text direction for this HTML element. Allowed strings: “ltr” (left to right), “rtl” (right to left)

id

DataType
string
Required
true
Description
Unique (in this file) identifier for this HTML element.

lang

DataType
string
Required
true
Description
Language for this element. Use short names specified in RFC 1766

style

DataType
string
Required
true
Description
Individual CSS styles for this element

title

DataType
string
Required
true
Description
Tooltip text of element

accesskey

DataType
string
Required
true
Description
Keyboard shortcut to access this element

tabindex

DataType
integer
Required
true
Description
Specifies the tab order of this element

onclick

DataType
string
Required
true
Description
JavaScript evaluated for the onclick event

size

DataType
string
Required
true
Description
Size of input field

disabled

DataType
string
Required
true
Description
Specifies that the input element should be disabled when the page loads

options

DataType
mixed
Required
true
Description
Associative array with internal IDs as key, and the values are displayed in the select box. Can be combined with or replaced by child f:form.select.* nodes.

optionsAfterContent

DataType
boolean
Required
true
Description
If true, places auto-generated option tags after those rendered in the tag content. If false, automatic options come first.

optionValueField

DataType
string
Required
true
Description
If specified, will call the appropriate getter on each object to determine the value.

optionLabelField

DataType
string
Required
true
Description
If specified, will call the appropriate getter on each object to determine the label.

sortByOptionLabel

DataType
boolean
Required
true
Description
If true, List will be sorted by label.

selectAllByDefault

DataType
boolean
Required
true
Description
If specified options are selected if none was set before.

errorClass

DataType
string
Default
‘f3-form-error’
Required
true
Description
CSS class to set if there are errors for this view helper

prependOptionLabel

DataType
string
Required
true
Description
If specified, will provide an option at first position with the specified label.

prependOptionValue

DataType
string
Required
true
Description
If specified, will provide an option at first position with the specified value.

multiple

DataType
boolean
Required
true
Description
If set multiple options may be selected.

optionLabelPrefix

DataType
string
Required
true
Description
Prefix for locallang lookup