我正在寻找在TYPO3后端的字段之间添加新行的方法。
这是我的TCA代码:
'tx_name' => array(
'label' => 'Your name',
'config' => array(
'type' => 'input',
'size' => '600',
)
),
而不是调色板:
$GLOBALS['TCA']['pages']['palettes']['mypallete'] = array(
'showitem' => 'tx_name, tx_surename, tx_....'
);
我想姓名,姓氏总是在新行。
答案 0 :(得分:4)
您应该包含字符串--linebreak--
所以在你的代码中它将是这样的:
$GLOBALS['TCA']['pages']['palettes']['mypallete'] = array(
'showitem' => 'tx_name','--linebreak--','tx_surename','--linebreak--', tx_....'
);
所以现在你应该在新线上拥有每个领域。