1
我想排序列與datatables插件。排序貨幣datatables
列包含:
10 €
20 €
200 €
1000 €
200 €
200.20 €
10.30 €
問題沒有正確排序,並把它作爲一個字符串。 我用這個代碼,但不工作:
jQuery.extend(jQuery.fn.dataTableExt.oSort, {
"formatted-num-pre": function (a) {
a = (a==="-") ? 0 : a.replace(/[^\d\-\.]/g, "");
return parseFloat(a);
},
"formatted-num-asc": function (a, b) {
return a - b;
},
"formatted-num-desc": function (a, b) {
return b - a;
}
});
的問候和感謝。
沒有一個答案的你的問題,但分開貨幣和價格列更好。 – 2013-03-08 14:39:40