Configuring keyboard shortcuts in the browser

Build 1501 on 14/Nov/2017  This topic last edited on: 6/Sep/2016, at 13:33

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>