attaches dhtmlxSidebar to a popup
| conf | object | optional, sidebar config for api-init |
| object | dhtmlxSidebar instance |
var myPop = new dhtmlXPopup(...);
var mySidebar = myPop.attachSidebar({
items: [
{id: "a1", text: "Tab 1", active: true},
{id: "a2", text: "Tab 2"}
]
});
Back to top