これは非常に簡単なことのように思えますが、検索しても方法が見つかりません。
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>
何も機能しません。どんなアイデアでも大歓迎です。(ところで、ホットキーの「キー」ターゲットのドキュメントも見つかりません。それがどこにあるかについてのポインタをいただければ幸いです。)