collapsed

displays the cell collapsed initially

boolean collapsed;

Example

webix.ui({ 
    view:"accordion",
    rows:[{
        header:"panel 1",
        body:"content 1"
    },
    { 
        header:"panel 2",
        body:"content 2",
        collapsed:true //the second cell will be collapsed initially
    }]
})

Related samples

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