RecordBind¶
-
class
webix.
RecordBind
()¶ Recordbind mixin
Referenced by¶
- mixins
BindSource()
.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 | webix.RecordBind={
$init:function(){
this.attachEvent("onChange", this._update_binds);
},
_bind_update:function(target, rule, format){
var data = this.getValues()||null;
if (format)
data = format(data);
this._bind_update_common(target, rule, data);
}
};
|