jQuery: tablesorter plugin, disabling sorting on some columns

蹲街弑〆低调 提交于 2019-12-31 03:50:09

问题


I'm trying to disable sorting of one column in my 3 col table. Following the docs I came up with this:

   $('table.sortable').tablesorter( 
     {sortList: [[0,0], [0,0], [0,0]], textExtraction: myTextExtraction}, 
     {headers: {0:{sorter:true}, 1:{sorter:true}, 2:{sorter:false}}}
   );

Official docs here


回答1:


I think your code is almost correct. Your textExtraction option needs to be in its own {}, and you don't need to specify the default header options. Try this:

$('table.sortable').tablesorter( 
    { sortList: [[0,0], [0,0], [0,0]] }, 
    { textExtraction: myTextExtraction}, 
    { headers: { 2:{sorter:false} } }
);


来源:https://stackoverflow.com/questions/4015320/jquery-tablesorter-plugin-disabling-sorting-on-some-columns

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!