Accordion Multimode

Hello,

I need to open two of four items at the same time (the other 2 Items must be closed). Is this possible?

example:

Item 1: Opened
Item 2: Opened
Item 3: Closed
Item 4: Closed

Thank you.

Hello
Try the next:

dhxAccord = new dhtmlXAccordion("accordObj"); dhxAccord.enableMultiMode(); dhxAccord.addItem("a1", "Main Page"); dhxAccord.addItem("a2", "Site Navigation"); dhxAccord.addItem("a3", "Support & Feedback"); dhxAccord.addItem("a4", "Comments"); dhxAccord.cells("a3").close(); dhxAccord.cells("a4").close();
You’ll gain the next result: