Is there a way to configure the key mapping? in my enviorment i need to map the clear button to the Pause/break button on the keyboard. Thank you in advance for your help with this issue.
Modify the following to map the clear button to Pause/break webapp/common/keyboard.js
Log in to post a comment.
Modify the following to map the clear button to Pause/break
webapp/common/keyboard.js
if (eventObj) {
var keyCode = eventObj.keyCode;
if (keyCode == 13) {
cancelKeyEvent(eventObj);
sendFormWithKey("enter", id);
} else if (keyCode == 19) {
cancelKeyEvent(eventObj);
sendFormWithKey("clear", id);
} else if ((!(eventObj.altKey))
&& (!(eventObj.ctrlKey))
&& (keyCode >=112)
&& (keyCode <= 123)) {
cancelKeyEvent(eventObj);
handleFunctionKeyEvent(eventObj, keyCode, id);
}
}
}