- Timestamp:
- 03/19/14 21:33:13 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/widgets/_ComplexValueMixin.js
r513 r525 64 64 if (typeof widgets[0].checked === 'boolean') { 65 65 array.forEach(widgets, function(w){ 66 w.set('value', array.indexOf(values, w._get('value')) !== -1, priorityChange); 66 w.set('value', 67 array.indexOf(values,w._get('value'))!==-1, 68 priorityChange); 67 69 }); 68 70 } else if (widgets[0].multiple) { … … 90 92 _setDisabledAttr: function(disabled) { 91 93 this.inherited(arguments); 94 this._set('disabled',disabled); 92 95 array.forEach( 93 96 this._getDescendantFormWidgets(), … … 98 101 _setReadOnlyAttr: function(readOnly) { 99 102 this.inherited(arguments); 103 this._set('readOnly',readOnly); 100 104 array.forEach( 101 105 this._getDescendantFormWidgets(),
Note: See TracChangeset
for help on using the changeset viewer.