SMART datagrid v.1 > Classes > HeaderSummary

Back  Forward

DataLudi.HeaderSummary.height  property

The height of summary header in pixels. 

If specify this value as greater than 0, the height will be determined by a greater one among minHeight and this value. 

If it is 0, the height will be calculated and set internally based on Style

Defaults to 0.

Getter
function height(): Integer
Setter
function setHeight(value: Integer)
Code -1
    grid.header().setSummary()({
        height: 30
    });
    // Or, by each property
    grid.header().summary().setHeight(30);
    // Or, by property path
    grid.setProperty('header.summary.height', 30);
See Also
minHeight
resizable
GridHeader
GridBase.setOptions
Examples
Grid Header Summary
Column Header