I want to change the order of columns in the completed table

Tags: #<Tag:0x00007efc656a00a0>

I want to change the order of the columns in the completed table and fix it, but I don’t know how.
I want to get the last column to column 0, please tell me how.

Hi @mingk1991

If I understand you correctly you might need to use those three options:

  • manualColumnMove
  • manualColumnFreeze
  • contextMenu

Here’s an example: https://jsfiddle.net/aszymanski/0chtgsa7/3/

Let me know if that’s what you needed.

    contextMenu: true,
    manualColumnMove: [28,0,1],
    manualColumnFreeze: true,

Although the table is configured with this setting, when the first cell is clicked, manualColumnMove is executed and the order is changed.

manualColumnFreeze
does not prevent the order from being shuffled.
Is there any other way?

I tried to recreate the issue but I wasn’t able to: https://jsfiddle.net/aszymanski/0chtgsa7/7/

Can you tell me what are the steps to get it?

Hi @mingk1991 does this issue still occur in your application?