SMART datagrid v.1 > Classes > GridColumn
Row group footer setting object of this column.
You can visit column Footer model through footer property. This object is automatically created when creating the column, and the values being set by this property change the property of the corresponding object.
// Specify the properties in column level.
grid.columnByName('colAddr').setGroupFooter({
expression: 'sum',
styles: {
background: '#ffff00'
}
});
// Can also specify in footer level.
grid.columnByName('colAddr').groupFooter().setExpression('sum');
grid.columnByName('colAddr').groupFooter().setStyles({
background: '#ffff00'
});