使一些列不合格?

时间:2011-10-20 13:15:45

标签: jquery tablesorter

任何人都知道我如何才能使某些列对此Jquery plugin无法解决?我似乎无法在文档中找到任何相关内容。

3 个答案:

答案 0 :(得分:6)

你错过了,这是代码:

$(document).ready(function() { 
    $("table").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 
            } 
        } 
    }); 
});

unsortable columns

答案 1 :(得分:5)

您需要使用headers选项才能使某些列无法排序。

$(document).ready(function() { 
    $("table").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 
            } 
        } 
    }); 
});

我希望这有帮助!

答案 2 :(得分:2)

它位于您链接到的页面上的大表格中的headers选项下面:

  

格式的每列控件的指令对象:   headers: { 0: { option: setting }, ... } 例如,要禁用   对表格的前两列进行排序:headers: { 0: { sorter: false}, 1: {sorter: false} }