valuePicker¶
- valuePicker ('type' => 'link')¶
- Path
$GLOBALS['TCA'][$table]['columns'][$field]['config']
- Type
array
- Scope
Display
Renders a select box with static values next to the input field. When a value is selected in the box, the value is transferred to the field. Keys:
- mode (keyword)
- blank (or not set)
The selected value substitutes the value in the input field
- append
The selected value is appended to an existing value of the input field
- prepend
The selected value is prepended to an existing value of the input field
- items (array)
An array with selectable items. Each item is an array with the first value being the label in the select drop-down (LLL reference possible) the second being the value transferred to the input field.
Example¶
'input_33' => [
'label' => 'input_33',
'config' => [
'type' => 'link',
'mode' => 'prepend'
'valuePicker' => [
'items' => [
['HTTPS', 'https://'],
['HTTP', 'http://'],
],
],
],
],