APEX 19.2, Chrome lastest version
I need to use the enter key as well as the tab key for item navigation. My client prefers to use the enter key to navigate between items because they use the keypad on the right of the key board and they only want to use the right hand...for speed. I was able to use the following Javascript function defined in the page attributes
function nextItem(PageItem) {
if (event.which == 13) {
document.getElementById(PageItem).focus();
}
}
together with the following code :
onkeypress = "nextItem('Pn_TARGET_ITEM _NAME')";
in the Custom Attributes of the Advance section for the item.
It works for Text Items but NOT for popup LOV fields. Why does it not work for popup LOVs and is there a better way to do this?
thanks in advance
PaulP