I am trying to implement a footer in a pivot table with this code:
function showTots()
{
mygrid._pgrid.setSkin(“dhx_skyblue”);
mygrid._pgrid.attachFooter(“Total,#stat_total,#stat_total,#stat_total,#stat_total,#stat_total,#stat_total”,[“text-align:right;”]);
mygrid._pgrid.setSizes();
mygrid._pgrid.callEvent(‘onGridReconstructed’,[]);
}
Everything is ok. However, widths align in Chrome, but the footer seems to be getting ‘cut-off’. In FF, the cut-off is happening and widths are also not getting aligned automatically, even though I have called setSizes. I also called setSkin in the local procedure, but no help.
Can you please help me out? Thanks.