- Timestamp:
- 03/13/14 01:19:07 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/widgets/_ComplexValueMixin.js
r511 r512 46 46 }); 47 47 }, 48 // Yuk, this function is taken directly from _FromMixin only49 // to add the priorityChange parameter50 48 _getValueAttr: function() { 51 49 this.value = this.inherited(arguments); 52 50 return this.value; 53 51 }, 52 // Yuk, _setValueAttr is taken directly from _FromMixin only 53 // to add the priorityChange parameter 54 54 _setValueAttr: function(obj, priorityChange) { 55 55 this.value = obj; … … 99 99 _handleChange: function(evt) { 100 100 if ( evt.target !== this.domNode ) { 101 this. _onChange();101 this.triggerOnChange(); 102 102 if ( evt ) { event.stop(evt); } 103 103 return false; … … 120 120 return false; 121 121 }, 122 _onChange: function() {122 triggerOnChange: function() { 123 123 if ( this._onChangeActive && 124 124 !(this.readOnly || this.disabled) ) {
Note: See TracChangeset
for help on using the changeset viewer.