SpreadJS Documentation
footerIndex Method
Gets the footer index in the sheet.
Syntax
var instance = new GcSpread.Sheets.SheetTable(name, row, col, rowCount, colCount, style);
var value; // Type: number
value = instance.footerIndex();
function footerIndex() : number;

Return Value

The footer index.
Example
This example creates a table.
//Add data
for (var col = 1; col < 6; col++) {
    for (var row = 2; row < 11; row++) {
        activeSheet.setValue(row, col, row + col);
    }
}

var sTable = activeSheet.addTable("table1", 1, 1, 10, 5, GcSpread.Sheets.TableStyles.medium2());
sTable.showFooter(true);
sTable.setColumnName(4, "SUM");
//set footer value
sTable.setColumnValue(0, "Total");
//set footer formula
sTable.setColumnFormula(4, "SUM(F3:F11)");
var value = sTable.footerIndex();
alert(value);
See Also

Reference

SheetTable type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.