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
Updated by Christian Kuhn about 6 years ago
- Status changed from New to Closed
the suggest wizard on select is gone since v8. afaik, it never worked well, probably only in little edge cases.
it has also never been documented this should be possible and the code implementation concentrated on group and their edge cases. i'll close the issue.
Updated by Xavier Perseguers about 6 years ago
Wahoo! Interesting to know, this means I have to reimplement it because it actually worked very well for me :)
Actions