From 1e58675059062d537b51b006fc7c0dcdefc63f50 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 1 Oct 2013 16:20:43 +0200 Subject: [PATCH] stupidly tried to set checkboxes=False .. on an otherwise empty table - dataTables does not like this tested checkboxes=False on other hazelnuts and it worked fine --- portal/sliceview.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/portal/sliceview.py b/portal/sliceview.py index 0e514dd9..9c2ba60a 100644 --- a/portal/sliceview.py +++ b/portal/sliceview.py @@ -232,6 +232,8 @@ class SliceView (LoginRequiredAutoLogoutView): togglable = False, # this is the query at the core of the slice list query = sq_measurement, + # do NOT set checkboxes to False + # this table being otherwise empty, it just does not fly with dataTables checkboxes = True, datatables_options = { 'iDisplayLength' : 25, -- 2.43.0