Check documentation for the latest version of dhtmlxSuite onKeyup DHTMLX Docs

onKeyup

fires when the native "onkeyup" event is triggered

void onKeyup(object inp,object ev,string name,string value);
inpobjectthe input element that fires the event
evobjectthe event object
namestringitem name
valuestringitem value (for radios only)

Example

myForm.attachEvent("onKeyUp",function(inp, ev, name, value){
    //your code here
});

Back to top