collapse

collapses the specified accordion item

void collapse();

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').collapse();

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 js product.