Created
May 26, 2014 15:38
-
-
Save paulrohrbeck/1e4806fe38e89074ce23 to your computer and use it in GitHub Desktop.
TYPO3: TCA make type „select“ optional with empty „option“
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'feld' => array( | |
'exclude' => 0, | |
'label' => 'Feld Name', | |
'config' => array( | |
'type' => 'select', | |
'items' => Array ( | |
Array("",0), | |
), | |
'foreign_table' => 'tx_deinetabelle', | |
'size' => 1, | |
'minitems' => 0, | |
'maxitems' => 1, | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment