From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Fri, 22 Mar 2013 16:46:24 +0000 (+0100)
Subject: toggling is broken within tabs, add a third hazenut for debugging purposes
X-Git-Tag: myslice-django-0.1-2~24
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=06b91dc7ab334dc7b8b95a3f713ba920c202bda3;p=myslice.git

toggling is broken within tabs, add a third hazenut for debugging purposes
---

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',