是否可以在 tca 中为 type=inline 添加建议向导?我需要使用内联界面创建记录。但我也需要一个选项来选择以前创建的记录。那可能吗 ?
例如,我需要以下 tca 代码的建议向导
'field_one' => array(
'exclude' => 0,
'label' => 'Label',
'config' => array(
'type' => 'inline',
'foreign_table' => 'tx_myext_domain_model_name',
'MM' => 'tx_myext_table_name_mm',
'size' => 10,
'autoSizeMax' => 30,
'maxitems' => 5,
'multiple' => 0,
),
),