Bug #33504
closedForm Wizard not loading in IE8
100%
Description
With Internet Explorer 8, when I want to load the form wizard I get a blank page.
I get two JavaScript errors :
First
Message : Identifier, string or number expected
Line : 2171
Character : 6
in JavaScript compressed file
Lines 2165 to 2175 are (2171 is line 7 below) :
constructor: function(config) {
Ext.apply(this, {
configuration: {
attributes: {
accesskey: '',
alt: '',
class: '',
dir: '',
disabled: '',
id: '',
lang: '',
Second
Message : 'TYPO3.Form.Wizard' is Null or is not an object.
Line : 178
in file /typo3/sysext/form/Classes/Controller/Wizard.php
Line 178 of rendered Wizard.php is :
TYPO3.Form.Wizard.Settings = {
Of course the JavaScript compressed file is included before line 178 as shown in Wizard.php.html file.
Files
Updated by Sebastian Schawohl almost 13 years ago
- File bug_33504.diff bug_33504.diff added
It seems that IE8 doesn't like reserved words as property name and class
is one of them.
Please find a patch for that.
All class
properties become "class"
which work for me on IE8, and still work on another browsers.
With this patch the form wizard loads fine now.
Updated by Gerrit Code Review almost 13 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/8776
Updated by Gerrit Code Review almost 13 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/8776
Updated by Gerrit Code Review almost 13 years ago
Patch set 3 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/8776
Updated by Gerrit Code Review over 12 years ago
Patch set 4 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/8776
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/15882
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/15883
Updated by Sebastian Schawohl about 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 2a0929bc242ff0d63e48ed394b0c21b9409ea65e.