Skip to content
Snippets Groups Projects
Commit f74d3d0e authored by Romain Leleu's avatar Romain Leleu Committed by Markus Klein
Browse files

[BUGFIX] Fix broken form wizard with MSIE

When "Behavior / Confirmation page" checkbox is checked in a
form content, MSIE fails to show the fields in right panel.
Hovering right panel's fields shows an empty blue box and an empty tooltip.
This bug only occurs when reloading forms with the checkbox enabled
or when enabling the checkbox.

This patch fixes a JS function that sets the value and then refreshes
the right panel when clicking on one of this kind of elements.

Resolves: #59305
Releases: master, 6.2
Change-Id: I7e4cf72cd06a92a4dbdc929b214c79ca6dcd52b2
Reviewed-on: http://review.typo3.org/32276


Reviewed-by: default avatarMarkus Klein <klein.t3@reelworx.at>
Tested-by: default avatarMarkus Klein <klein.t3@reelworx.at>
parent 043a0608
Branches
Tags
No related merge requests found
......@@ -245,9 +245,11 @@ TYPO3.Form.Wizard.Elements = Ext.extend(Ext.Container, {
setConfigurationValue: function(formConfiguration) {
Ext.merge(this.configuration, formConfiguration);
TYPO3.Form.Wizard.Helpers.History.setHistory();
this.rendered = false;
this.render();
this.doLayout();
if (this.xtype != 'typo3-form-wizard-elements-basic-form') {
this.rendered = false;
this.render();
this.doLayout();
}
this.fireEvent('configurationChange', this);
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment