Categories | Question details Back To List | ||
Autocalculation in footer Im using {#stat_total} in footer and I want to add one more footer bellow with this logic: Column A Column B footer 1: sum:, {#stat_total},{#stat_total} footer 2: diff:, {#Column A- Column B}, {#Column B- Column A} Is it possible? BTW: Im using smartRendering Answer posted by Support on Oct 31, 2008 03:50 You can add footers as groi.attachFooter("<div id='summ1'>{#stat_total}</div>,<div id='summ2'>{#stat_total}</div>") groi.attachFooter("<div id='summ3'></div>,<div id='summ4'></div>") and next logic to the grid grid.attachEvent("onStatReady",function(){ |