multiSelectFilterItems¶
- multiSelectFilterItems¶
- Path
$GLOBALS['TCA'][$table]['columns'][$field]['config']
- Type
array
- Scope
Display
- RenderType
Contains predefined elements for the filter field. On selecting an item, the list of available items gets automatically filtered.
Each element in this array is in itself an array where:
First value is the filter value of the item .
Second value is the item label (string or LLL reference)
Examples¶
Select by predefined keywords¶

EXT:styleguide/Configuration/TCA/tx_styleguide_elements_select.php¶
[
'columns' => [
'select_multiplesidebyside_5' => [
'label' => 'select_multiplesidebyside_5 multiSelectFilterItems',
'config' => [
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
'items' => [
[
'label' => 'foo 1',
'value' => 1,
],
[
'label' => 'foo 2',
'value' => 2,
],
[
'label' => 'foo 3',
'value' => 3,
],
[
'label' => 'bar',
'value' => 4,
],
],
'multiSelectFilterItems' => [
[
'',
'',
],
[
'foo',
'foo',
],
[
'bar',
'bar',
],
],
],
],
],
]