DHTMLX Docs & Samples Explorer

onInputChange

occurs when data in an input was changed and the cursor is still in this input.

Parameters:

  • name - (string) the item id (the value of attribute name)
  • value - (string) the item value
  • form - (object) the form object
myForm.attachEvent("onInputChange", function(name, value, form){
	//any custom logic here
});

See also: onChange, onBeforeChange