SMART datagrid v.1 > Classes > GridBase
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.
grid.setFooter({
minHeight: 25,
resizable: true,
styles: {
background: '#3000ff00'
}
});
// Individual property settings
var footer = grid.footer();
footer.setMinHeight(25);
footer.setResizable(false);