header

sets the label of the header in the expanded state

boolean|string|function header;

Example

webix.ui({ 
    view:"accordion",
    rows:[{
        header:"panel 1",
        body:"content 1"
    },
    { 
        header:false //hides the header for the second cell
        body:"content 2"
    }]
})

Related samples

Details

The false value will hide the header.

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