How to disable sorting on column in jQuery.tablesorter?

Ishikawa Yoshi picture Ishikawa Yoshi · Jan 20, 2012 · Viewed 23.2k times · Source

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.

Answer

xpapad picture xpapad · Jan 20, 2012

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/