sets the label of the header in the expanded state
webix.ui({
view:"accordion",
rows:[{
header:"panel 1",
body:"content 1"
},
{
header:false //hides the header for the second cell
body:"content 2"
}]
})
The false value will hide the header.