T
TanStack3y ago
optimistic-gold

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
optimistic-gold
optimistic-goldOP3y ago
like any one column to default sort
like-gold
like-gold3y 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>
}
other-emerald
other-emerald2y ago
i want to disable for others column how to do it ??

Did you find this page helpful?