From: ProfYaffle Date: Sun, 1 Nov 2015 10:00:01 +0000 (+0000) Subject: WebUI: Add Ctrl+A/select-all to DVR grids X-Git-Tag: v4.2.1~1695 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac554574ecd9930aa1483bad2944debab6ef9300;p=thirdparty%2Ftvheadend.git WebUI: Add Ctrl+A/select-all to DVR grids --- diff --git a/src/webui/static/app/idnode.js b/src/webui/static/app/idnode.js index 4e3494d34..c21e5c020 100644 --- a/src/webui/static/app/idnode.js +++ b/src/webui/static/app/idnode.js @@ -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 };