我在Typo3 TCA中创建了一个选择,它看起来像这样:
'company_address' => array(
'exclude' => 1,
'label' => 'Company Address',
'config' => array(
'type' => 'select',
'foreign_table' => 'pages',
'foreign_table_where' => ' AND doktype = 75',
'items' => array(
array('', 0)
),
'maxitems' => 1
)
),
Run Code Online (Sandbox Code Playgroud)
默认值=记录的uid,如何更改?
我需要那个值= my_column.可能吗 ?