Check documentation for the latest version of dhtmlxSuite onEnter DHTMLX Docs

onEnter

fires when the user presses the "Enter" button inside of an input item

void onEnter(string|number id,number value);
idstring|numberid of an item
valuenumberthe text that the user types in an input item

Example

myRibbon.attachEvent("onEnter", function(id, value){
    //your code here
});

Back to top