我想为我的 TYPO3 扩展记录表创建动态 TCA 表。表单应该有三个单选按钮,选择其中任何一个都应该显示一个新的选择列表。
'author' => array(
'config' => array(
'type` => 'radio',
'foreign_table' => 'tx_MyExt_domain_model_author',
))
例如,这将显示:Rob, James, Kurt
。选择Rob
,foreign_table_where
应该AND where tx_MyExt_domain_model_author.author='Rob'
和应该显示list
所选作者所写的书籍
或者
以下只是一个伪代码,我只是想知道它是否有可能在 TCA 形式中?
'books' => array(
'config' => array(
'type` => 'select',
'items => array(#Show list of books with Rob as author),
array(#Show list of books with James as author),
array(#Show list of books with Kurt as author),
))