fires when the user changes the value of the DataValue object
var data = new webix.DataValue({});
data.setValue("Anna");
$$("myForm").bind(data);
// ...
data.attachEvent("onChange", function(obj, config){
alert("Your new name is: "+ obj.name);
});
The function executed on this event, takes 2 arguments: