jQuery Tablesorter - 列不按字母顺序排序

时间:2010-06-14 20:25:31

标签: jquery tablesorter

我不确定这里出了什么问题。这是页面:http://www.utexas.edu/ssw/cswr/projects/project-list/

第一列排序,但不按正确顺序返回数据(按字母顺序排列)。

表本身是由自定义PHP函数生成的,该函数从WordPress数据库中提取信息。我认为这可能是问题,但正如您可以看到第四列(结束日期)正确排序。我还认为可能是第一列中的链接搞砸了,但添加this page的文本提取代码完全破坏了排序。

这是我目前用来调用Tablesorter的jQuery代码:

<script type="text/javascript" id="js">

   jQuery(document).ready(function($) { 
       $(document).ready(function() {
          // call the tablesorter plugin, the magic happens in the markup
          $("#projectTable").tablesorter({ 
              // pass the headers argument and assing a object 
              //debug: true,
              //sortList: [[0,0]],
              headers: { 
                  0: { 
                  // set the column to sort as text  
                      sorter: 'text',
                  },
                  // 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
                  },
                  3: {
                        sorter:'digit'
                  }
              }


          });

               // Works only with plugin modification
                $("#projectTable").bind("sortStart",function(e) { 
                    if( $(e.target).hasClass('header') ) {
                        $("#overlay").show();
                    }
                }).bind("sortEnd",function(e) {
                    if( $(e.target).hasClass('header') ) {
                        $("#overlay").hide();
                    }
                });

         });
    }); 
</script>

感谢您的帮助!

2 个答案:

答案 0 :(得分:2)

您需要将textExtraction定义为complex,因为您在元素中有链接。

请参阅:http://tablesorter.com/docs/#options

答案 1 :(得分:1)

问题在于它是按链接中的URL而不是文本进行排序。

您可能需要创建自定义排序条件(textExtraction属性)来解决此问题。