Bug #78457
closedSuggest-wizard does not submit after first empty result
100%
Description
If you search in the suggest-wizard (i.e. to select a page for shortcuts) it stops searching once the result was empty.
Example:- You search for "12" and the result is empty (because there is no page with this title and also none with this uid)
- After that you type "3" and you expect to search now for "123" (this page uid exists) but no search is invoked now.
Reason is the option "preventBadQueries" in jquery.autocomplete which is by default activated.
Solution ideas:- switch off that option for all suggest-inputs in "typo3/sysext/backend/Resources/Public/JavaScript/FormEngineSuggest.js"
- or make it configurable
As a proof, I switched it off in my js-console with
TYPO3.jQuery('.t3-form-suggest').autocomplete().setOptions({preventBadQueries:false});
and this solves the problem.
Updated by Peter Rauber about 8 years ago
As a workaround I could also use the JS-command mentioned above inside a custom js-file. But I dont know how to configure TYPO3 to load custom js-files in the backend.
I know how to do that in an own backend-module but here I would need it to be loaded by default everywhere.
Updated by Gerrit Code Review about 8 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/50536
Updated by Gerrit Code Review about 8 years ago
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/50543
Updated by Wouter Wolters about 8 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 82e93c5b8163c443d00a725a185bdbc1bdba24d8.