attaches an additional line to the footer
values | array | array of header titles |
style | array | array of styles, optional |
Available only in PRO Edition
//plain usage
myGrid.attachFooter("A,B,C,D");
//alternative syntax
myGrid.attachFooter(["A","B","C","D"])
//colspans in the footer
myGrid.attachFooter("A,#cspan,C,#cspan");
//rowspans in the footer
myGrid.attachFooter("A,#rspan,C,#rspan");
//styles assigned
myGrid.attachFooter("A,B,C,D",["","color:red;","",""]);
Back to top