Actions
Bug #86864
closedSuggestWizard within FlexForms does not work
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend JavaScript
Target version:
Start date:
2018-11-06
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
Hello Core-Team,
I have a TCA group field in my Plugin-FlexForm with activated suggest feature. But when I try to find a record, autosuggest keeps empty.
Browser console return Error 500:
#1478345642 RuntimeException
Identifier could not be decoded to an array.
You have converted many backend JavaScript into a compressed version. And here is the problem.
In TYPO3 8.7 FormEngineSuggest.js:
dataStructureIdentifier = $searchField.data('datastructureidentifier'),
In TYPO3 9.5.1 FormEngineSuggest.js:
dataStructureIdentifier = e.dataset.datastructureidentifier
It looks like the same, but in TYPO3 8.7 the jquery data() function will convert string into JSON, if it looks like JSON:
if ( rbrace.test( data ) ) { return JSON.parse( data ); }
This conversion will not happen, if you try to access data attributes with dataset directly.
Stefan
Actions