开发者

Keyboard Shortcuts in my JSF page

开发者 https://www.devze.com 2023-02-15 00:20 出处:网络
I was wondering if there is a way to make an easy keyboard shortcut in my JSF page each page has several buttons and I would like to be able to have a user press something like alt+a to activate a bu

I was wondering if there is a way to make an easy keyboard shortcut in my JSF page

each page has several buttons and I would like to be able to have a user press something like alt+a to activate a button called 'Add Report to Group'

in .n开发者_开发知识库et you just put an & before the letter you want to be the shortcut key, is there an option like this in JSF (apart from writing some javascript code which is what I found on the web)


Use the HTML-provided accesskey attribute which is also mapped in <h:commandButton> and <h:commandLink>.

<h:commandButton value="Add" accesskey="a" action="#{bean.add}" />

This button can then be invoked by Alt+A or Shift+Alt+A, depending on the browser used.

0

精彩评论

暂无评论...
验证码 换一张
取 消