function table_setColumnOrder<TFeatures, TData>(table, updater): void;function table_setColumnOrder<TFeatures, TData>(table, updater): void;Defined in: features/column-ordering/columnOrderingFeature.utils.ts:104
Routes a column order updater through the table's column-order change handler.
The updater may be a next ordered id array or a function of the previous array, matching the instance table.setColumnOrder behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setColumnOrder(table, ['firstName', 'lastName', 'age'])table_setColumnOrder(table, ['firstName', 'lastName', 'age'])