Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WebUI: Add Ctrl+A/select-all to DVR grids
  • Loading branch information
ProfYaffle authored and perexg committed Nov 2, 2015
1 parent 087627a commit ac55457
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/webui/static/app/idnode.js
Expand Up @@ -1609,6 +1609,14 @@ tvheadend.idnode_grid = function(panel, conf)
viewConfig: {
forceFit: true
},
keys: {
key: 'a',
ctrl: true,
stopEvent: true,
handler: function() {
grid.getSelectionModel().selectAll();
}
},
tbar: buttons,
bbar: page
};
Expand Down

0 comments on commit ac55457

Please sign in to comment.