Side Menu

Hi,

Is it possible to have a menu on the left hand side of the page or an accordion inside another accordion?

I am trying to build an application where the menu size will keep growing. So we want the menu to be on the side. An accordion style will be preferred, but I could not find any sample for adding an accordion inside an accordion.

Any help would be very much appreciated.

Thanks,
Manjusha

Hi,

I could not find any sample for adding an accordion inside an accordion

the approach is the same as one for attaching Accordion to Layout cell, Tabbar or Window - attachAccordion() method:

accordParrent= new dhtmlXAccordion(“accordObj”);
accordParrent.addItem(“a1”, “Item 1”);

var accord1 = accordParrent.cells(“a1”).attachAccordion();
accord1.addItem(…);