Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Oracle Apex Keyboard Shortcut Issue

SURYA LAKSHMANAN SJan 7 2025 — edited 27 hours ago

I have using Control+N shortcut key for my application but new window is opening

else if (e.ctrlKey && e.which === 78) { // 78 is the key code for 'N'
e.preventDefault();
apex.item("P1_ITEM").setValue('6');
apex.page.submit();
}

I need to set that page item value while I am pressing Ctrl+N key how to do?
I used various method to hanle this but this issue is not fixed
e.stopImmediatePropagation(); // Stop propagation to other handlers
e.stopPropagation();
return false; // Prevent default behavior and stop propagation but these method are not working give any suggestion to do this

Comments
Post Details
Added on Jan 7 2025
0 comments
47 views