Documentation

headerAlt

sets the label of the header in the collapsed state

string|function headerAlt;

Example

webix.ui({ 
    view:"accordion",
    rows:[{
        header:"panel 1",
        headerAlt:"panel 1 (closed)",
        body:"content 1"
    },
    { 
        header:"panel 2",
        headerAlt:"panel 2 (closed)",
        body:"content 2"
    }]
});

See also

Back to top