From: Andreas Ă–man Date: Thu, 18 Sep 2008 20:12:38 +0000 (+0000) Subject: Stripe rows and disable selection in EPG and DVR grid. X-Git-Tag: 2.12~868 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2cec8a101c5eb26d8cc4dd2afd13705dc12bb8e7;p=thirdparty%2Ftvheadend.git Stripe rows and disable selection in EPG and DVR grid. --- diff --git a/webui/static/app/dvr.js b/webui/static/app/dvr.js index 4fba7070f..e511574fd 100644 --- a/webui/static/app/dvr.js +++ b/webui/static/app/dvr.js @@ -161,6 +161,8 @@ tvheadend.dvr = function() { var panel = new Ext.grid.GridPanel({ loadMask: true, + stripeRows: true, + disableSelection: true, title: 'Digital Video Recorder', store: tvheadend.dvrStore, cm: dvrCm, diff --git a/webui/static/app/epg.js b/webui/static/app/epg.js index cb93aee4e..d0599d6f6 100644 --- a/webui/static/app/epg.js +++ b/webui/static/app/epg.js @@ -243,6 +243,8 @@ tvheadend.epg = function() { var panel = new Ext.grid.GridPanel({ loadMask: true, + stripeRows: true, + disableSelection: true, title: 'Electronic Program Guide', store: epgStore, cm: epgCm,