Actions
Bug #13512
closedSuggest Wizard does not work
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2011-03-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In TCA fields with wizard "suggest" the wizard seems to work on the first glance: results are fetched via AJAX and displayed.
But if I click on some result row the value is not transfered to the real select (or group) field. This problem is in v4.3, v4.4 and v4.5
This is due to the JS file
/t3lib/js/jsfunc.tceforms_suggest.js
where the name of the form object is hard coded ...
So I replaced
var formEl = 'data[' + rec_table + '][' + rec_uid + '][' + rec_field + ']';
by
var formEl = TBE_EDITOR.prependFormFieldNames+'[' + rec_table + '][' + rec_uid + '][' + rec_field + ']';
and everything is fine.
Files
Updated by Bernd Niehues over 12 years ago
- File jsfunc_tceform_suggest_js_20120514.diff jsfunc_tceform_suggest_js_20120514.diff added
- Target version set to 4.7.1
- % Done changed from 0 to 100
Hey! Works for me, so i made a diff file out of it.
Updated by Lorenz Ulrich over 12 years ago
- Project changed from 687 to TYPO3 Core
This seems to be an issue for the core. The suggest wizard doesn't work in frontend because of a hardcoded form.
Updated by Nicole Cordes over 11 years ago
- Status changed from New to Closed
- TYPO3 Version set to 6.2
Closed this as it is already covered by http://forge.typo3.org/issues/4791
Actions