Hi, im trying to generate a response.menu with category similar to the one described here by mdipierro:
http://groups.google.com/group/web2py/browse_thread/thread/73056f518dd8b554/02bc66127749782e?lnk=gst&q=menu+vertical#02bc66127749782e the problem im facing is that i have no idea on how to generate each submenu from the model i.e. submenu1=[ ['item1',False,URL(r=request,f='item1')], ['item2',False,URL(r=request,f='item2')], ] i have ping_result = db().select(db.t_ping_result.f_hub, orderby=db.t_ping_result.f_hub, distinct=True) should i iterate every ping_result and manually create the submenu string? regards

