Setting Oracle Apex hotkeys buttons Shortcuts
How to set Shortcuts hotkeys for buttons in Oracle Apex
I will show you how to implement hotkey for Buttons in Oracle Apex:
1- Create button and give Static Id to that button. For Example:
2- Select Edit Page and in JavaScript Execute when Page Loads properties
write following JavaScript code:
document.getElementById("back").accessKey = "b";
write following JavaScript code:
document.getElementById("back").accessKey = "b";
3- Now you are done test your page.
Hope this helps.
Thanks,
:)
Post a Comment