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
myTreeGrid.attachFooter("A,B,C,D");
//alternative syntax
myTreeGrid.attachFooter(["A","B","C","D"])
//colspans in the footer
myTreeGrid.attachFooter("A,#cspan,C,#cspan");
//rowspans in the footer
myTreeGrid.attachFooter("A,#rspan,C,#rspan");
//styles assigned
myTreeGrid.attachFooter("A,B,C,D",["","color:red;","",""]);
Back to top