Move column doesn't work with footer

Hi,
I have enabled move column in my grid then attach a footer:

grid.enableColumnMove(true);
grid.attachFooter(",#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,Total Amount:,

0
,
0
", [’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,’’,‘text-align:right;’,‘text-align:right;’,‘text-align:right;’,’’,’’,’’,’’,’’,’’,’’,’’]);
grid.init();

I’ve found the header and column can be moved together nicely. But the weird thing is the footer total amount values can not be shifted with their corresponding columns. Am I do something wrong with my script? How can I achieve this goal?

Unfortunately the issue cannot be reconstructed locally.
Moving columns with footer works well for us.
Please, provide a complete demo to reconstruct the issue

Hello!

I have similar problem! enableclolumnmove(true) and attachedfooter with sums.
when moving columns in header all colums in footer stay the same.

any idea why or how to make this running?

Unfortunately the issue still cannot be reproduced locally.
If the problem still occurs for you, please, provide with any kind of sample of your code or a complete demo, where the issue can be reconstructed.

To fix the porblem you should maybe call onGridReconstructed after moving columns

grid.attachEvent(“onAfterCMove”, function() {
//do some stuff here if needed then called grid reconstruct
grid.callEvent(“onGridReconstructed”, []);
})