How to disable sorting?
See original GitHub issueWhat version of React-Table are you using?
v6.6.0
What bug are you experiencing, or what feature are you proposing?
Feature: add ability to disable sorting (no click on header) (or update documentation if it already exists)
Issue Analytics
- State:
- Created 6 years ago
- Comments:5
Top Results From Across the Web
How to remove sorting option from DataTables? - Stack Overflow
First, try setting "bSort" to false. Note that, this will disable sorting all around. $('#jTable').dataTable({ "bSort" : false } );.
Read more >How to Disable Sorting on a Worksheet - VizWiz
It's quite simple! All you have to do is turn off the sort controls. In this short Tableau Tip, I show you how...
Read more >ordering - DataTables
Note that the ability to add or remove sorting of individual columns can be disabled by the columns.orderable option for each column.
Read more >How to Disable Sorting on a Worksheet - Tableau Public
How to Disable Sorting on a Worksheet ... Let's say you have multiple metrics on a chart (not required) and you have sorted...
Read more >Disable Sorting On Specific Columns In Datatable
In this example I will show you how to disable sorting on specific columns in datatable. If you want to remove sorting arrow...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It’s in the
ReactTable
props:That will disable for all columns. What about selective columns sortable?