Documentation

expand

expands the specified accordion item

void expand();

See also

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();

Back to top