From 06b91dc7ab334dc7b8b95a3f713ba920c202bda3 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 22 Mar 2013 17:46:24 +0100 Subject: [PATCH] toggling is broken within tabs, add a third hazenut for debugging purposes --- trash/sliceview.py | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/trash/sliceview.py b/trash/sliceview.py index 46f1169c..6093ebf6 100644 --- a/trash/sliceview.py +++ b/trash/sliceview.py @@ -42,29 +42,41 @@ def slice_view (request, slicename=tmp_default_slice): main_plugin = Stack ( page=page, title="global container", - togglable=False, + domid='thestack', +# togglable=False, sons=[Tabs ( page=page, - title="different angles", - active_domid='with-checkboxes', + title="2 tabs : w/ and w/o checkboxes", + domid='thetabs', + toggled=False, + active_domid='checkboxes', sons=[ Hazelnut ( page=page, title='a sample and simple hazelnut', - togglable=False, + domid='simple', +# togglable=False, # this is the query at the core of the slice list query=main_query, ), Hazelnut ( page=page, title='with checkboxes', - domid='with-checkboxes', - togglable=False, + domid='checkboxes', +# togglable=False, checkboxes=True, # this is the query at the core of the slice list query=main_query, ), ]), + Hazelnut ( + page=page, + title='not in tabs', + domid='standalone', + toggled=False, + # this is the query at the core of the slice list + query=main_query, + ), QueryCode ( page=page, title='xmlrpc code', -- 2.43.0