[TYPO3-german] TCA - Select - Required [Gelöst]
Johannes C. Laxander
jc at laxander.com
Mon Nov 21 12:00:07 CET 2016
Doku stimmt bzgl. SELECT und "eval" nicht ganz.
'minitems' => 1 sowie 'eval' => 'required' werden benötigt, und die erste Option muss einen leeren Wert haben.
Siehe auch https://plus.google.com/108439171586570003043/posts/YW8jbK7VXf5
TCA:
$GLOBALS['TCA']['tabelle']['columns']['field'] = array(
'exclude' => 0,
'label' => 'Field name',
'config' => array(
'type' => 'select',
'renderType' => 'selectSingle',
'config' => array(
'type' => 'select',
'items' => array (
array('Bitte auswählen',''),
),
'foreign_table' => 'XXX',
'minitems' => 1,
'maxitems' => 1,
'eval' => 'required',
),
),
);
SQL:
field int(11) unsigned DEFAULT '0',
Johannes.
More information about the TYPO3-german
mailing list