This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: How to use keyboard shortcuts?nickarls Mar 12, 2008 8:42 AM (in response to victoriaonsnow.viktor.rees.nexgo.de)More of a standard javascript thing. Try something like <script type="text/javascript"> document.onkeyup = KeyCheck; function KeyCheck(e) { var KeyID = (window.event) ? event.keyCode : e.keyCode; switch(KeyID) { ... } } </script>
 
- 
        2. Re: How to use keyboard shortcuts?damianharvey.damianharvey.gmail.com Mar 12, 2008 10:08 AM (in response to victoriaonsnow.viktor.rees.nexgo.de)Also check out the accessKey attribute present in many of the h:commandXXX and a4j:commandXXX components. Cheers, Damian. 
 
     
    