Bug 12135: Fix suggestions table width
authorJonathan Druart <jonathan.druart@biblibre.com>
Mon, 27 Apr 2015 14:55:32 +0000 (16:55 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Wed, 6 May 2015 17:28:56 +0000 (14:28 -0300)
The trick to update the suggestions table width is outdated since jQuery
UI has been updated.

Test plan:
0/ Don't apply this patch
1/ Go on the suggestions page (suggestion/suggestion.pl), change tabs:
the table width is wrong
2/ Apply this patch
4/ Repeat 1 and confirm the width is now updated.

Signed-off-by: Christopher Brannon <cbrannon@cdalibary.org>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
The table sizes still vary slightly, but this is an improvement.
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt

index 83e0e2d..ec8a5f1 100644 (file)
@@ -47,11 +47,8 @@ $(document).ready(function() {
     $('#suggestiontabs').tabs({
         // Correct table sizing for tables hidden in tabs
         // http://www.datatables.net/examples/api/tabs_and_scrolling.html
-        "show": function(event, ui) {
-            var oTable = $('div.dataTables_wrapper>table', ui.panel).dataTable();
-            if ( oTable.length > 0 ) {
-                oTable.fnAdjustColumnSizing();
-            }
+        "activate": function(event, ui) {
+            $( $.fn.dataTable.tables( true ) ).DataTable().columns.adjust();
         }
     });
     $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, {