Ignore:
Timestamp:
03/13/14 01:19:07 (11 years ago)
Author:
hendrikvanantwerpen
Message:

Small fixes fir urls and validation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/widgets/_ComplexValueMixin.js

    r511 r512  
    4646            });
    4747        },
    48         // Yuk, this function is taken directly from _FromMixin only
    49         // to add the priorityChange parameter
    5048        _getValueAttr: function() {
    5149            this.value = this.inherited(arguments);
    5250            return this.value;
    5351        },
     52        // Yuk, _setValueAttr is taken directly from _FromMixin only
     53        // to add the priorityChange parameter
    5454                _setValueAttr: function(obj, priorityChange) {
    5555            this.value = obj;
     
    9999        _handleChange: function(evt) {
    100100            if ( evt.target !== this.domNode ) {
    101                 this._onChange();
     101                this.triggerOnChange();
    102102                if ( evt ) { event.stop(evt); }
    103103                return false;
     
    120120            return false;
    121121        },
    122         _onChange: function() {
     122        triggerOnChange: function() {
    123123            if ( this._onChangeActive &&
    124124                 !(this.readOnly || this.disabled) ) {
Note: See TracChangeset for help on using the changeset viewer.