expand

expands the specified accordion item

void expand();

Example

webix.ui({
    container:"layout_div",
    view:"accordion",
    multi:true,
    cols:[
        { header:"col 1", id:"item1", body:"content 1"},
        { header:"col 2", id:"item2", body:"content 2"},
    ]
});
...
$$('item1').expand();

See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix javascript dashboard framework and page of accordion tabs product.