Revision: 2516
          https://sourceforge.net/p/mrbs/code/2516/
Author:   cimorrison
Date:     2012-10-22 14:06:42 +0000 (Mon, 22 Oct 2012)
Log Message:
-----------
Fixed problem with filtering and sorting of reports (column numbers off by one)

Modified Paths:
--------------
    mrbs/trunk/web/js/report.js.php

Modified: mrbs/trunk/web/js/report.js.php
===================================================================
--- mrbs/trunk/web/js/report.js.php     2012-10-22 13:38:21 UTC (rev 2515)
+++ mrbs/trunk/web/js/report.js.php     2012-10-22 14:06:42 UTC (rev 2516)
@@ -183,13 +183,10 @@
       }).appendTo('#report_form');
   }
   <?php 
-  // Stop the first column ("id") from being searchable.   For some reason
-  // using bVisible here does not work, so we will use CSS instead.
   // Define the type of the start time, end time, duration and last updated 
columns
   // (they have the Unix timestamp in the title of a span for sorting)
   ?>
-  tableOptions.aoColumnDefs = [{"bSearchable": false, "bVisible": false, 
"aTargets": [ 0 ]},
-                               {"sType": "title-numeric", "aTargets": [3, 4, 
5, -1]}]; 
+  tableOptions.aoColumnDefs = [{"sType": "title-numeric", "aTargets": [3, 4, 
5, -1]}]; 
 
   <?php
   // Fix the left hand column.  This has to be done when initialisation is 
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to