TableSorter:使用逗号作为十进制符号过滤数字

时间:2014-04-28 14:58:29

标签: tablesorter

使用jQuery TableSorter,我无法正确过滤包含欧洲格式数字的列(每3位数字点,逗号为十进制数字)。无论如何,整理工作就像一个魅力。

在此处查看我的问题:http://jsfiddle.net/Ted22/9tBgZ/13/

我使用这段代码:

jQuery.tablesorter.addParser({
    id: "commaDigit",
    is: function(s, table) {
        var c = table.config;
        return $.tablesorter.isDigit(s.replace(/[,.]/g, ""), c);
    },
    format: function(s) {
        return $.tablesorter.formatFloat(s.replace(/[,.]/g, ""));
    },
    parsed: false,
    type: "numeric"
});

你能帮助我吗?

谢谢你的支持!

泰德

1 个答案:

答案 0 :(得分:0)

只需将usNumberFormat option设置为falsedemo

即可