How to write 'TOTAL' on the cell of interactive grid on a-GV-row.is-grandTotal row?

Viewed 15

It used a function in interactive grid column aggregate sum function this help me to show grand total of column .

function(options) {

  options.defaultGridColumnOptions = {

    aggregates: ["SUM"]

  };

  return options;

}

after using that function in javascript initilizer code i want a label like "TOTAL" in my last cell of first column how do i write?

0 Answers
Related