Default keyboard shortcuts on the Result webpart allow to move up/down, check/uncheck and refresh selection.
Default keys (if not specified in the configuration):
- W: move up
- S: move down
- D: check
- A: uncheck
- R: refresh
To define custom shortcuts, add this code:
<Shortcuts>
<shortcut action="Check" bind="d"></shortcut>
<shortcut action="Uncheck" bind="a"></shortcut>
<shortcut action="MoveUp" bind="w"></shortcut>
<shortcut action="MoveDown" bind="s"></shortcut>
<shortcut action="Refresh" bind="r"></shortcut>
<shortcut action="Command" bind="alt+shift+k" execute="showDialog('NewObjectForm.aspx?type=user&objectUI=newUser',null,820,650);"></shortcut>
<shortcut action="Command" bind="alt+l" execute="alert('HELLO');"></shortcut>
</Shortcuts>