attachAccordion
attaches dhtmlxAccordion to a cell
dhtmlXAccordion attachAccordion( [object conf] );
conf | object | optional, accordion config for object-api init |
dhtmlXAccordion | dhtmlXAccordion instance |
Example
var myAcc = dhxComponent.cells(id).attachAccordion();
myAcc.addItem("a1", "First item", true);
myAcc.addItem("a2", "Second item");
// or
var myAcc = dhxComponent.cells(id).attachAccordion({
icons_path: "icons/",
items: [
{ id: "a1", text: "Main Page", icon: "flag_red.png" },
{ id: "a2", text: "Navigation", icon: "flag_green.png" },
{ id: "a3", text: "Feedback", icon: "flag_blue.png" }
]
});
Back to top