Check documentation for the latest version of dhtmlxSuite onInputChange DHTMLX Docs

onInputChange

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

void onInputChange(string name,string value,object form);
namestringitem name
valuestringitem value
formobjectform object

Example

myForm.attachEvent("onInputChange", function(name, value, form){
    //your code here
});

Back to top