jQuery: tablesorter plugin, disabling sorting on some columns

后端 未结 1 1438
感动是毒
感动是毒 2021-01-21 21:06

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: [[         


        
相关标签:
1条回答
  • 2021-01-21 21:34

    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} } }
    );
    
    0 讨论(0)
提交回复
热议问题