function column_getCanSort<TFeatures, TData, TValue>(column): boolean;function column_getCanSort<TFeatures, TData, TValue>(column): boolean;Defined in: features/row-sorting/rowSortingFeature.utils.ts:357
Checks whether this accessor column can participate in sorting.
The column must have an accessor and sorting must be enabled by both the column definition and table options.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Column_Internal<TFeatures, TData, TValue>
boolean
const canSort = column_getCanSort(column)const canSort = column_getCanSort(column)