Regarding  shortcut key in apex

Hi
I got this result after following the steps given in this link http://www.oracle-and-apex.com/keyboard-shortcuts-for-buttons/ and what to do next to get exact result and how to apply this on apex application. Plz suggest something.
Register some general key assignments
// register F10 if a button exists named "Apply Changes" or "Create [whatever]"
ApexBuilderPlugin.assignKey
( jQuery("input[type=button][value=Apply Changes], button[value=Apply Changes], button[value^=Create]")[0]
, 121 // F10
, false // pCtrlKey
, false // pShiftKey
, false // pAltKey
, false // pMetaKey
// register F8 for the run page link
ApexBuilderPlugin.assignKey
( jQuery("a[href^=f?p=4000:RUN_PAGE:],a[href^=f?p=BUILDER:RUN_PAGE:]")[0]
, 119 // F8
, false // pCtrlKey
, false // pShiftKey
, false // pAltKey
, false // pMetaKey
// register Shift+Ctrl+< if a button exists named "<"
ApexBuilderPlugin.assignKey
( jQuery("input[type=button][value=<],button[value^=<]")[0]
, 37 // Cursor Right
, true // pCtrlKey
, true // pShiftKey
, false // pAltKey
, false // pMetaKey
// register Shift+Ctrl+> if a button exists named ">"
ApexBuilderPlugin.assignKey
( jQuery("input[type=button][value=>],button[value$=>]")[0]
, 39 // Cursor Right
, true // pCtrlKey
, true // pShiftKey
, false // pAltKey
, false // pMetaKey
// register Shift+Ctrl+S to go to Shared Components
ApexBuilderPlugin.assignKey
( jQuery("a[href^=f?p=4000:9:]")[0]
, 83 // S
, true // pCtrlKey
, true // pShiftKey
, false // pAltKey
, false // pMetaKey
// register Shift+Ctrl+E to go to Edit Page
ApexBuilderPlugin.assignKey
( jQuery("a[href^=f?p=4000:4150:]")[0]
, 69 // E
, true // pCtrlKey
, true // pShiftKey
, false // pAltKey
, false // pMetaKey
// set report view to "list", if you don't want this behaviour, remove the following line
setTimeout('if (jQuery(".irr-pill-report-center")[0]){gReport.data.view(\'REPORT\');}',100);
/* Remove comment to enable a "Production" background image
// Show "Production" in the background
jQuery("body").css("background-image",'url(http://farm1.static.flickr.com/194/494085742_3e2f466cea_o.png)');
jQuery(".htmldbPageEditBody").css("background-color", "transparent");
// doesn't work in IE -> layout get's destroyed (eg. Page Item Edit)
if (!window.PRO_setValue)
jQuery(".htmldbRunEditRegion,.htmldbBreadcrumbRegion,.htmldbPageEditHeaderL,.htmldbGBR,.TopBarUIFix,.htmldbInfo,.htmldbNewBottom").css("opacity", "0.75");
Thanks & Regards
Neha

Neha,
If you are looking for a documentation of the ApexBuilder Plugin , check here
http://builderplugin.oracleapex.info/documentation.html
It explains configuring the keyboard shortcuts in great details(or start from here)
what to do next to get exact result Would you mind explaining what your "result" is ? What is it that you are trying to with shortcuts(from your other post with the same content) ?
It wouldn't hurt to provide a clearer explanation of your requirement, when asking for help in a public forum.

Similar Messages

  • Regarding Shortcut key

    Hi
    How we can create Shortcut keys in apex?
    Thanks & Regards
    Neha

    Thanks for ur reply. It works but after getting this result what to do now and how to use it in application plz tell
    Register some general key assignments
    // register F10 if a button exists named "Apply Changes" or "Create [whatever]"
    ApexBuilderPlugin.assignKey
    ( jQuery("input[type=button][value=Apply Changes], button[value=Apply Changes], button[value^=Create]")[0]
    , 121 // F10
    , false // pCtrlKey
    , false // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // register F8 for the run page link
    ApexBuilderPlugin.assignKey
    ( jQuery("a[href^=f?p=4000:RUN_PAGE:],a[href^=f?p=BUILDER:RUN_PAGE:]")[0]
    , 119 // F8
    , false // pCtrlKey
    , false // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // register Shift+Ctrl+< if a button exists named "<"
    ApexBuilderPlugin.assignKey
    ( jQuery("input[type=button][value=<],button[value^=<]")[0]
    , 37 // Cursor Right
    , true // pCtrlKey
    , true // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // register Shift+Ctrl+> if a button exists named ">"
    ApexBuilderPlugin.assignKey
    ( jQuery("input[type=button][value=>],button[value$=>]")[0]
    , 39 // Cursor Right
    , true // pCtrlKey
    , true // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // register Shift+Ctrl+S to go to Shared Components
    ApexBuilderPlugin.assignKey
    ( jQuery("a[href^=f?p=4000:9:]")[0]
    , 83 // S
    , true // pCtrlKey
    , true // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // register Shift+Ctrl+E to go to Edit Page
    ApexBuilderPlugin.assignKey
    ( jQuery("a[href^=f?p=4000:4150:]")[0]
    , 69 // E
    , true // pCtrlKey
    , true // pShiftKey
    , false // pAltKey
    , false // pMetaKey
    // set report view to "list", if you don't want this behaviour, remove the following line
    setTimeout('if (jQuery(".irr-pill-report-center")[0]){gReport.data.view(\'REPORT\');}',100);
    /* Remove comment to enable a "Production" background image
    // Show "Production" in the background
    jQuery("body").css("background-image",'url(http://farm1.static.flickr.com/194/494085742_3e2f466cea_o.png)');
    jQuery(".htmldbPageEditBody").css("background-color", "transparent");
    // doesn't work in IE -> layout get's destroyed (eg. Page Item Edit)
    if (!window.PRO_setValue)
    jQuery(".htmldbRunEditRegion,.htmldbBreadcrumbRegion,.htmldbPageEditHeaderL,.htmldbGBR,.TopBarUIFix,.htmldbInfo,.htmldbNewBottom").css("opacity", "0.75");
    Regards
    Neha

  • How to set Shortcut keys for button in Apex

    Hi
    Could anyone help me on how to set shortcut keys for buttons in Apex.
    I need to use say ALT + S to submit the page.
    The following thread pertaining to HTML DB refered to use ACCESS key. but that couldnt work in my case.
    Re: operation of the app. with the keyboard
    Any pointers on achieving this would be helpful.
    Thanks
    Vijay

    Hi Vijay,
    I’m afraid you must do it using javascript key listener. You can’t use action() on template based buttons because they are actually not HTML buttons but images with hyperlink.
    Key listener checks which key has been pressed down and invoke some JS function. For example, write this code in page header:
    <script>
    document.onkeydown=keyCheck;
    function keyCheck(e){
         var KeyId = (window.event) ? event.keyCode : e.keyCode;
         switch(KeyId){         
              case 113:
                   doSubmit('SAVE');
                   break;                    
              case 118:
                   alert('Hello');
                   break;
    </script>
    This script will submit page with request 'SAVE' if you press F2 or will show alert message if you press F7. Modify it to your issue.
    Regards,
    Przemek

  • How to Add shortCut  key to  button or form In SAP BusinessOne

    Hi
    How to assign short Cut  key to  button or form ,in SAP BusinessOne using  VB.net.
    Thanks,
    Y.
    Edited by: Yughandar on Mar 10, 2011 9:32 PM

    Hi
    To set shortcut key for button , try this
    in your srf change the button caption like this
    caption="&amp;Del line"
    this will set shortcut key (Alt+d) for the button
    Regards
    Arun

  • Shortcut key issue.

    Hi.
    i want to create shortcut keys in my apllication.please suggest me any valueable link so that i can do this task.
    Thanks & Regards
    Nisha

    Hi,
    I did find this
    http://www.openjs.com/scripts/events/keyboard_shortcuts/
    Regards,
    Jari
    Edited by: jarola on Aug 25, 2010 1:17 PM
    This might be also good link
    http://www.scottklarr.com/topic/126/how-to-create-ctrl-key-shortcuts-in-javascript/
    And lot of from when you use Google

  • Cutomization - Disable shortcut keys

    We are working in an enterprise environment, where our requiement is to give Customize Firefox to the users. Only Address Bar visible to the user.
    1- Hide Menus. (Task Done)
    2- Icon along the Address bar. (Task Done)
    3- Disable all Shortcut keys. (Partial Done)
    4- Disable all commands of about (i.e about:config)
    I have explored about the disabling of shortcut key, it cannot be done through user prefences js file as I did for Task 1 & 2. We can to do with xul programming as I read. We dont want to use the Third party Extensions as for this we have to do for each user. We want to do change in the base file from where user profile generated.
    I have disabled the shortcut keys by editing in the [ C:\%Firefox Dir%\omni.ja\chrome\browser\content\browser\browser.xul ]
    just by adding disbaled = "true" attribute
    [<key id="key_openAddons" key="&addons.commandkey;" command="Tools:Addons" disabled="true" modifiers="accel,shift"/>
    <menuitem id="menu_openAddons" label="&addons.label;" accesskey="&addons.accesskey;" disabled="true" key="key_openAddons" command="Tools:Addons"/>]
    The Shortcut key disabled but only for the administrator but not work for the normal users whose menu disabled or not.
    No issue for Admin user ethier shortcut disabled but not rest features.
    Please help in this regard. Either any other file which create the user profile and for point no 4. or How to resolve this issue.

    Looking for an alternate method to do this without an event structure.  My implementation uses a state machine with while loops, and is setup to only respond to specific keystrokes/mouse clicks, at specific times.  When in these states, it waits for the user to interract, and can not proceed until they do (by either progressing with the sequence, or aborting it).  
    When I implement the method provided, it does work when it is in the state that expects F1, but if the user presses F1 at any other time, the event is triggered, and the VI goes into an invalid state (locks up).  I do inderstand that normally an event structure would be the correct implementation for keyboard inputs, but the application needs to respond in different ways depending on the user input, and needs to ignore all user input at other times.  I couldn't figure out a practical way to ignore events while in certain states, so I implemented the statem machine instead.  
    Any ideas?  Working in LV 2013. Thanks in advance.
    GSinMN  

  • Message ShortCut Key not working properly

    Hellow every one, guys i am encountrying a problem regarding my nokia e5 , i've just bought it recently and still left with 8 months warranty. The problem i am facing is, the message shortcut key which is on the keypad of this Phone, is not working properly. When i do long press to open new text msg, it sometimes doesnt opens any thing and sometimes even open messaging and then close it. At a certain angle i have to apply  a little more force in order to operate it properly. Please help me wheather its a hardware problem or any sort of dust particles have emerged inside the keypad resulting in loose contact of the button and the motherboard.
    REPLY ASAP.

    Hi Shanam,
    Welcome to the forum
    Thanks  for joining the community, if you believe there is an issue with your device that is preventing you  from optimizing all the options available to you.
     I would advise for you to bring/ or send it for repair. Keep  sending us your replies and comments on the forum.
    Kind regards.
    Carl
    If this post answers your question, you can help others by clicking the green accepted solution' button.
    Please ask your questions to the main board and not to my mailbox. Thank you.

  • Handling complex shortcut key like "ctrl+shift+x"

    Hi,
    In oracle forms, i want to trigger a button click on pressing "ctrl+shift+x" shortcut key. I could not able to do this with AccessKey. Is there any other way to do this ?
    Thanx in Advance
    Regards,
    Saravanan A

    You could map the ctrl-shift-x key to fire the key-f0 trigger.
    The make the key-f0 trigger do the same functionality as clicking the button
    This is not quite what you are asking for I know, but provides a similar result.
    Tony

  • Can i customize the shortcut key on my w541

    calculator, fine, lock machine, great, open browser, sure, but can i point the 'folder' icon shortcut key to 'my documents' instead of 'computer' in windows explorer?  would be a small kine boon ;-p

    Hi Pdonoho,
    Welcome to Lenovo Community!
    Create keyboard shortcuts to open programs
    You can create keyboard shortcuts to open programs. Opening programs this way is often simpler than opening them using your mouse or other pointing device. Before you get started, you need to create a shortcut for the program to which you want to assign a keyboard shortcut. To do this, open the folder that contains the program, right-click the program's executable file, and then click Create Shortcut. For more information about creating shortcuts to programs, see Create or delete a shortcut.
    Locate the shortcut to the program that you want to create a keyboard shortcut for.
    Right-click the shortcut, and then click Properties.
    In the Shortcut Properties dialog box, click the Shortcut tab.
    Click in the Shortcut key box, press the key on your keyboard that you want to use in combination with Ctrl+Alt (keyboard shortcuts automatically start with Ctrl+Alt), and then click OK.  If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
    You can now use this keyboard shortcut to open the program.
    Hope this helps.
    Best regards,
    Hemanth Kumar

  • Implementing shortcut keys ion JSF pages Jdev 11g

    How we can implement shortcut keys ion JSF pages Jdev 11g ?
    We are doing a Oracle Forms to Java migration and our users are getting use to use function keys.
    how we can map a commit action on the form to "CTRL + F7 key" (for example)
    Thanks.

    Hi,
    This is not possible directly. With JSF technology you are limited with browser capabilities which are HTML + Javascript. So you cannot communicate directly with i.e. commit function only with i.e. HTML form action or AJAX based javascript function...
    regards,
    Branislav

  • Shortcut Key to PushButton

    Hello Friends,
    Can anyone tell me if it is possible to map a shortcut key to a pushbutton on a selection screen? For example, when user presses key F10, then the program will execute the code flow associated to a button on the screen.
    If yes, how?
    Thanks in advance.
    Kind regards.

    Hi
    On selection-screen u can assign only 5 your own buttons, the keys of keyboards assigned to them are:
    -  CTRL+F1
    -  CTRL+F2
    -  CTRL+F3
    -  CTRL+F4
    -  CTRL+F5
    U have to check the ok-code value in the event AT SELECTION-SCREEN, these butto can hav a code FC<XX>:
    TABLES SSCRFIELDS.
    PARAMETERS: P_BUKRS LIKE T001-BUKRS.
    SELECTION-SCREEN FUNCTION KEY 1.
    SELECTION-SCREEN FUNCTION KEY 2.
    SELECTION-SCREEN FUNCTION KEY 3.
    SELECTION-SCREEN FUNCTION KEY 4.
    SELECTION-SCREEN FUNCTION KEY 5.
    INITIALIZATION.
      MOVE: '@01@ 1' TO SSCRFIELDS-FUNCTXT_01,
            '@02@ 2' TO SSCRFIELDS-FUNCTXT_02,
            '@03@ 3' TO SSCRFIELDS-FUNCTXT_03,
            '@04@ 4' TO SSCRFIELDS-FUNCTXT_04,
            '@05@ 5' TO SSCRFIELDS-FUNCTXT_05.
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'FC01'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F1'.
        WHEN 'FC02'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F2'.
        WHEN 'FC03'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F3'.
        WHEN 'FC04'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F4'.
        WHEN 'FC05'. MESSAGE I208(00) WITH 'You have pressed KEY CTRL+F5'.
      ENDCASE.
    Max

  • What is the swaps height and width shortcut key?

    Can please someone tell me, what is the shortcut key of swaps height and width(crop tool)
    in adobe photoshop cs4.
    Thanx in advance
    Regards:
    Shami Photos
    www.shamiphotos.com

    Yeps, I know it already.
    But i need shortcut key. in speedy work I feel disturbance to go upward.
    Can we assign it manually?
    Regards:
    Farrukh Shami
    Online Printing

  • Shortcut Keys in MI

    Hi Friends,
    I want to know whether we can use shortcut keys in MI
    I have a requirment like if the user wants to go from one screen to other like next button or back button then on the event of clicking one button can we achieve this in MI and if yes how it can be done if we are using JAVA / ABAP Webdynpro applications
    Regards
    JM

    Hello,
    Applications in MI are either written in Java AWT (native) or Java JSP (web page). Both paradigme let's you capture key input.
    So yes, in MI you can have shortcut keys, but you have to code them yourself. You can contact me if you need to know specifically how.
    I hope this answers your question,
    Julien.
    msc mobile Canada
    http://www.msc-mobile.com

  • Shortcut keys in Flash projector

    I can't find any documentation about which shortcut keys are
    available and active when a Flash Windows projector file is
    running. I do know that Ctrl-Q will exit the program, but what
    other shortcut keys are active for a projector?

    OhGreatOne wrote:
    > I can't find any documentation about which shortcut keys
    are available and
    > active when a Flash Windows projector file is running. I
    do know that Ctrl-Q
    > will exit the program, but what other shortcut keys are
    active for a projector?
    Open Ctrl+O
    Close Ctrl+W
    Exit Ctrl+Q
    Full Screen Ctrl+F
    High Quality Ctrl+H
    Play Ctrl+Enter
    Rewind Ctrl+R
    Step Forward Ctrl+->
    Step Back Ctrl+<-
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Shortcut keys or Hotkeys for ABAP UI Elements for Navigation

    Can we create shortcut keys or hotkeys for ABAP UI elements on an ABAP screen where the user can directly navigate to a particular UI element?
    E.g.: Screen containing 5 tabs where the user can directly navigate to a specific tab.

    Hi Margaret.,
    If u post this thread in web dynpro ABAP forum then u may get some use ful help..!! As per my concern., whatever u like go for tat, which will give u more work satisfaction.,  pls go through this link and post it there.,
    [Web DynPro ABAP Forum|Web Dynpro ABAP;
    Thanks & Regards
    Kiran

Maybe you are looking for

  • BADI For Commitment Item Change for Service PO

    Hi All, I want to change the commitment item in the PR on change of Material Group . I used the BADI ME_PROCESS_REQ_CUST for changing the commitment item and its working fine for all types of PR except Service PR . In service PR , its changing the co

  • Default G/L acct and Cost center in service PO with added Freight line also

    Hi, I am doing Service PO my requirement is we need default G/l account and cost center in Service PO, we have added one line as Freight charges that is also required default g/l account. please suggest me the configuration. Thanks Shital

  • Create and Handle empty msg in JMS receiver Adapter

    Hi, In my interface scenario, I will have to create a msg output if certain conditions are met and should not create a msg if otherwise.. I am using a Graphical Mapping and the receiver is JMS. I have some questions.. 1. Using Graphical mapping, Can

  • After 2.1 Update Shuffle Feature all Jacked up. (Please READ)

    Okay here is the deal.. Previous to 2.1 update I could go into the ipod section on my iPhone and click (Albums - All Songs - then Shuffle) As expected All the songs on my phone would shuffle. Now when I got to a song I liked and knew that the next so

  • Planner not able to see business rules

    Hi, I have given planner access to a user. And i have added validate and launch access to the business rule for that user. But after that when i login to worspace with that user i am not able to see the business rules. Any idea why is this happening?