Actions
Bug #85799
closedSuggest wizard is not shown in TYPO3 v8
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2018-08-10
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
I have this TCA definition:
'council_chairperson' => [ 'exclude' => 0, 'label' => 'LLL:EXT:lb_records/Resources/Private/Language/locallang_db.xlf:tx_lbrecords_domain_model_convention.council_chairperson', 'config' => [ 'type' => 'select', 'renderType' => 'selectSingle', 'items' => [ ['', '0'], ], 'foreign_table' => 'tx_lionsbase_domain_model_member', 'foreign_table_where' => 'ORDER BY tx_lionsbase_domain_model_member.last_name, tx_lionsbase_domain_model_member.first_name', 'minitems' => 0, 'maxitems' => 1, 'wizards' => [ 'suggest' => [ 'type' => 'suggest', 'default' => [ 'receiverClass' => \Causal\Lionsbase\Tca\SuggestReceiver::class, 'additionalSearchFields' => [ 'CONCAT(first_name, \' \', last_name)', 'CONCAT(last_name, \' \', first_name)', 'CONCAT(last_name, \', \', first_name)', ], 'maxItemsInResultList' => 20, ], ] ] ], ],
In TYPO3 v7, this shows a select wizard:
However when using TYPO3 v8, the suggest wizard is gone:
Files
Actions