Community
Participate
Working Groups
Build Identifier: 201110082101 The property of "Disable" for CheckBox does not work in preview nor deploy mode Reproducible: Always
This is a JSGen defect. The generation for Checkbox.egl is wrong function setDisabled(disabled Boolean in) check.disabled = disabled; span.disabled = disabled; end generated js is: "setDisabled": function(disabled) { this.check.disabled = disabled; // should be this.check.setDisabled(disable) this.span.disabled = disabled; // The same as the last line }
The property "disable" for widget "List" only works in preview mode of internal browser. It does not work in preview with external browser and deploy mode
ListMutli has the same issue with List
The checkbox problem is a js gen problem. But the list/listMulti disabled is not a problem, it is just a display difference across browsers. Scott, please review my patch. Thanks.
Created attachment 205780 [details] fix
Ji Yong, Fix looks good -- please commit....thanks!
Fixed
Verified in 201111012101