Hi, i need to find which control value is changed from the whole form… how can i find…
like that "textbox1 value changed from 400 to 800… "
$$(“form1”).attachEvent(“onChange”, function(newv, oldv){
webix.message("Value changed from: “+oldv+” to: "+newv);
});
thanks.