jquery.tablesorter.js>排序混合型列

时间:2009-10-23 14:18:58

标签: jquery jquery-plugins tablesorter

我有一张表,其中包含Days Remaining的列。此列中的值可以是数字,也可以是“待定”(待定)。 tablesorter插件无法正确处理此混合类型列的排序。我怎么能让它正常工作?

谢谢, 〜JK

1 个答案:

答案 0 :(得分:0)

您需要创建自己的解析器

我不确定这会有效,但尝试搜索tablesorter和addParser,你应该做得很好:

jQuery.tablesorter.addParser({
  id: "SpecialNumber",
  is: function(s) {
   return /^TBD/.test(s);
  },
  format: function(s) {
   return 0;
  },
  type: "numeric"
 });