[web2py] Re: Multi Tabbed Menu - Any Suggestions.

2011-01-07 Thread selecta
not sure this is what you want but you can easily build tabs with web2pys included ajax functions default.py def index(): return dict() def page1(): return 'this is page 1' def page2(): return 'this is page 2' index.html {{=UL([LI('Page %s'%i,

[web2py] Re: Multi Tabbed Menu - Any Suggestions.

2011-01-06 Thread Chris Baron
http://jqueryui.com/demos/tabs/ You could also try writing your own if you're not happy with the way it works. Use the jquery code as a reference. On Jan 5, 11:58 pm, David J. da...@styleflare.com wrote: I was wondering if anyone on the list has seen an good multi-level horizontal tab menu.