views:

180

answers:

1

I have a lot of data-entryists using my ASP.NET application and we have all been wondering if there are any keyboard keys or shortcuts that you can press to trigger:

  • Check a RadioButton
  • Uncheck a RadioButton
  • Check a Checkbox
  • Uncheck a Checkbox

I know that you can write Javascript and do it yourself, but do any keyboard keys/shortcuts already exist without using the mouse?

+2  A: 

Spacebar is the standard button for those, with arrow keys to move between radio buttons.

jjackson
And RadioButtons cannot be 'unchecked' again without special code to do it?
rlb.usa