Check documentation for the latest version of dhtmlxSuite getFooterLabel DHTMLX Docs

getFooterLabel

gets the label of the footer specified by index

string getFooterLabel(number cin,number ind,boolean mode);
cinnumbercolumn index
indnumberfooter row index (optional, 0 by default)
modebooleantrue, to return a label in HTML format, preserving formatting tags
stringthe 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