hi,

i realize that web2py sub sub menu in newest version is not work as 
expected (no error occured but the result is not expected).
*models/menu.py*
response.menu = [
(T('Menu'), False, URL('default', 'index'), [
(T('Sub Menu 1'), False, URL('default', 'index'), [
(T('Sub Menu 2'), False, URL('default', 'index'), []),
]),
]), 
]

*result in html browser*
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a href="/test/default/index">Sub Menu 1</a>
<ul class="dropdown-menu">
<li>
<a href="/test/default/index">Sub Menu 2</a>
</li>
</ul>
</li>
</ul>

how can i have the sub sub menu in web2py newest version? the previous 
version (bootstrap 2) is worked as expected

thanks and best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to