I am using this event for column reorder:
columnDrop: function (args) {
console.log(args);
},
I need column id, which I can get with args.column.id (because I add this property to the columns when Grid is created), but I need and new order/place of the column or all columns with new order, but in args there is nothing for that.
How to get and column order with Syncfusion Grid ?