gets the label of the footer specified by index
cin | number | column index |
ind | number | footer row index (optional, 0 by default) |
mode | boolean | true, to return a label in HTML format, preserving formatting tags |
string | the label of the footer specified by index |
//minimal parameters set
var footerLabel=myTreeGrid.getFooterLabel(0);
//maximal parameters set
var footerLabel=myTreeGrid.getFooterLabel(0,1);
Back to top