fixed problem with dialog overlaying infolog grid in ff

This commit is contained in:
Andreas Stöckel 2012-03-26 14:08:57 +00:00
parent a6fe9b04bc
commit 5e9a768fb1

View File

@ -72,7 +72,7 @@ var et2_DOMWidget = et2_widget.extend(et2_IDOMNode, {
"parent": null "parent": null
}; };
this._disabled = false; this.disabled = false;
this._surroundingsMgr = null; this._surroundingsMgr = null;
}, },
@ -258,7 +258,7 @@ var et2_DOMWidget = et2_widget.extend(et2_IDOMNode, {
set_disabled: function(_value) { set_disabled: function(_value) {
var node = this.getDOMNode(this); var node = this.getDOMNode(this);
if (node) if (node && this.disabled != _value)
{ {
this.disabled = _value; this.disabled = _value;