Hello,
How I can catch enter button pressed on a EditText?
For Example we can do something like
- window.add("checkbox", undefined, "Example").onClick = function() {
// checkbox state changed
}
But can we catch enter button pressed onEditText like something like this?
- window.add("edittext", undefined, "Example").onEnterPressed = function() {
//
}