javascript - How to disable sorting on column in jQuery.tablesorter? -
i try find way how disable sorting on column. use jquery plugin tablesorter. , default if click on header cell sort column data, need if don't need use sorting on 1 or 2 column in 4 columns table.
thanks in advance.
you must pass appropriate parameters @ initialization, example:
{ ... headers: { 0: { sorter: false} } }
for more information, check manual at:
Comments
Post a Comment