I try to find a way how to disable sorting on column. I use jQuery plugin tablesorter. And by default if you click on header cell it sort column data, but what I need to do if I don't need to use sorting on one or two column in four columns table.
Thanks in advance.
You must pass the appropriate parameters at initialization, for example:
{ ...
headers: { 0: { sorter: false} }
}
For more information, check the manual at:
http://tablesorter.com/docs/
Also you can use html data attribute:
<th data-sorter="false">...</th>
Or you can use a class:
<th class="sorter-false">...</th>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With