Project

General

Profile

Actions

Bug #85799

closed

Suggest wizard is not shown in TYPO3 v8

Added by Xavier Perseguers over 5 years ago. Updated over 5 years ago.

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

typo3v7.png (24.1 KB) typo3v7.png Xavier Perseguers, 2018-08-10 09:27
typo3v8.png (20.3 KB) typo3v8.png Xavier Perseguers, 2018-08-10 09:27
Actions #1

Updated by Christian Kuhn over 5 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.

Actions #2

Updated by Xavier Perseguers over 5 years ago

Wahoo! Interesting to know, this means I have to reimplement it because it actually worked very well for me :)

Actions

Also available in: Atom PDF