这似乎是一件非常简单的事情,但我已经搜索过并且找不到如何做到这一点。
在richfaces/jsf 我想在一个简单的表单上实现一些热键,例如:
<h:panelGrid columns="3" width="500">
<h:outputLabel value="User"/>
<h:commandButton id="userAdd" value="Add" action="staffNewUser"/>
<h:commandButton id="userEdit" value="Edit" action="staffEditUsers"/>
...
</h:panelGrid>
我已经尝试了很多方法来让热键工作,包括:
<rich:hotKey key="alt+ctrl+u" >
<rich:componentControl target="userAdd" operation="click"/>
</rich:hotKey>
没有任何效果。任何想法,将不胜感激。(顺便说一句,我也没有在热键中找到任何关于“关键”目标的文档,并且希望能得到一个关于它可能在哪里的指针。)