Documentation

headerHeight

the header height

number headerHeight;

Example

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

See also

Back to top