getFooterLabel
gets the label of the footer specified by index
string getFooterLabel(number cin,number ind,boolean mode);
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 |
Example
//minimal parameters set
var footerLabel=myGrid.getFooterLabel(0); // returns "AB"
//maximal parameters set
var footerLabel=myGrid.getFooterLabel(0,0,true); // returns "<b>A</b><br>B"
Back to top