|
|
|
@ -14244,11 +14244,15 @@ BI.Widget = BI.inherit(BI.OB, {
|
|
|
|
|
if (o.invisible) { |
|
|
|
|
this.element.hide(); |
|
|
|
|
} |
|
|
|
|
if (o.disabled) { |
|
|
|
|
this.element.addClass("base-disabled disabled"); |
|
|
|
|
if (o.disabled || o.invalid) { |
|
|
|
|
BI.nextTick(BI.bind(function () { |
|
|
|
|
if (this.options.disabled) { |
|
|
|
|
this.setEnable(false); |
|
|
|
|
} |
|
|
|
|
if (o.invalid) { |
|
|
|
|
this.element.addClass("base-invalid invalid"); |
|
|
|
|
if (this.options.invalid) { |
|
|
|
|
this.setValid(false); |
|
|
|
|
} |
|
|
|
|
}, this)); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|