[Koha-patches] [PATCH] Bug 8711 - alternating colors messed up on reports

Owen Leonard oleonard at myacpl.org
Thu Sep 6 21:22:25 CEST 2012


Patch adds the "zebra-striping" option to the
table sorter initialization and changes the row
color CSS to match the tablesorter's to prevent
conflicts.
---
 .../en/modules/reports/guided_reports_start.tt     |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
index 21d8235..f081894 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
@@ -43,6 +43,7 @@ $(document).ready(function(){
 [% END %]
   // call the tablesorter plugin
   $("#table_reports").tablesorter({
+    widgets : ['zebra'],
     sortList: [[1,0]],
     headers: {
        6: { sorter: false},
@@ -151,7 +152,7 @@ canned reports and writing custom SQL reports.</p>
 </thead>
 <tbody>
 [% FOREACH savedreport IN savedreports %]
-[% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
+[% UNLESS ( loop.odd ) %]<tr class="odd">[% ELSE %]<tr>[% END %]
 <td>[% savedreport.id %]</td>
 <td>[% savedreport.report_name %]</td>
 <td>[% savedreport.type %]</td>
-- 
1.7.9.5



More information about the Koha-patches mailing list