Jquery tablesorter无法禁用列排序

时间:2014-02-20 04:01:45

标签: jquery tablesorter

我正在使用jquery插件表排序器尝试禁用列上的排序。我试过了:

data-sorter="false" //not working
class="{ sorter: false }" // not working
class="sorter-false" // not working

你可以在这里看到一个plunkr:http://plnkr.co/edit/ZJINXSTBnsyd1sGpE1Ut?p=preview

2 个答案:

答案 0 :(得分:2)

将以下参数作为参数添加到表格顺序中,并使用您的代码:

$( '.dirf_tbl' ).tablesorter({

    headers: {
      // disable sorting of the first column (we start counting at zero)
      0: {
        // disable it by setting the property sorter to false
        sorter: false
      }
    }
    });

答案 1 :(得分:0)

您可以使用headers option

function tblSortOn(){
    $( '.dirf_tbl' ).addClass( 'tablesorter' );

    $(".dirf_tbl").tablesorter({ 
        // pass the headers argument and assing a object 
        headers: { 
            // assign the secound column (we start counting zero) 
            1: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }, 
            // assign the third column (we start counting zero) 
            2: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            } 
        } 
    }); 
}

在这种情况下,您的Last NameAge将被停用。

Updated Plunker