SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.footer  property

GridFooter object which has the settings to the area in which displays column footer cells. 

This object is created when the grid is initialized. When setting the property, the value of existing object will be changed. 

Getter
function footer(): GridFooter
Setter
function setFooter(value: Object|GridFooter)
Code -1
    grid.setFooter({
        minHeight: 25,
        resizable: true,
        styles: {
            background: '#3000ff00'
        }
    });
    // Individual property settings
    var footer = grid.footer();
    footer.setMinHeight(25);
    footer.setResizable(false);
See also
GridFooter
header
Examples
Column Footer