Documentation

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"
    }]
})

See also

Details

The false value will hide the header.

Back to top