various cleanups in the use of datatables
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 26 Sep 2013 09:08:30 +0000 (11:08 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 26 Sep 2013 09:08:30 +0000 (11:08 +0200)
portal/platformsview.py
portal/sliceview.py

index 6f788be..7101164 100644 (file)
@@ -28,13 +28,11 @@ class PlatformsView(TemplateView):
             query = platform_query,
             query_all = platform_query,
             checkboxes = False,
-            datatables_options = {
-            # for now we turn off sorting on the checkboxes columns this way
-            # this of course should be automatic in hazelnut
-            'aoColumns'      : [None, None, None, None, {'bSortable': False}],
-            'iDisplayLength' : 25,
-            'bLengthChange'  : True,
-            },
+            datatables_options = { 
+                'iDisplayLength': 10,
+                'bLengthChange' : True,
+                'bAutoWidth'    : True,
+                },
         )
 
         context = super(PlatformsView, self).get_context_data(**kwargs)
index 8201814..d3dea6f 100644 (file)
@@ -205,11 +205,9 @@ class SliceView (LoginRequiredAutoLogoutView):
                 query_all  = query_user_all,
                 checkboxes  = True,
                 datatables_options = { 
-                    # for now we turn off sorting on the checkboxes columns this way
-                    # this of course should be automatic in hazelnut
-                    'aoColumns'      : [None, None, None, None, {'bSortable': False}],
                     'iDisplayLength' : 25,
                     'bLengthChange'  : True,
+                    'bAutoWidth'     : True,
                 },
             ))
     
@@ -235,11 +233,9 @@ class SliceView (LoginRequiredAutoLogoutView):
             query       = sq_measurement,
             checkboxes  = True,
             datatables_options = { 
-                # for now we turn off sorting on the checkboxes columns this way
-                # this of course should be automatic in hazelnut
-                'aoColumns'      : [None, None, None, None, {'bSortable': False}],
                 'iDisplayLength' : 25,
                 'bLengthChange'  : True,
+                'bAutoWidth'     : True,
             },
         ))