T
TanStack3y ago
continuing-cyan

Any way to have default sorting order for specific columns

Is there way to have default sorting order in react table v8. by default its should be sorted in desc order
3 Replies
continuing-cyan
continuing-cyanOP3y ago
like any one column to default sort
ratty-blush
ratty-blush3y ago
@gokul js Use the sorting key in the initialState within the table options used for creating your table.
let tableOptions: TableOptions<RetreatAttendeeModel> = {
initialState: {
sorting: [{
id: <your-column-id>,
desc: true,
}]
}, ....<otherOptions>
}
let tableOptions: TableOptions<RetreatAttendeeModel> = {
initialState: {
sorting: [{
id: <your-column-id>,
desc: true,
}]
}, ....<otherOptions>
}
old-apricot
old-apricot3y ago
i want to disable for others column how to do it ??

Did you find this page helpful?