fires when the user presses the "Enter" button inside of an input item
id | string|number | the id of an item |
value | number | the text that the user types in an input item |
myToolbar.attachEvent("onEnter", function(id, value){
//your code here
});
Back to top