backbone.js 在backgrid中排序自定义(货币)格式列

2guxujil  于 2022-11-10  发布在  其他
关注(0)|答案(1)|浏览(152)

我正在使用Backgridjs将json对象中的数据显示到表中。我目前正在使用一个格式化程序将字符串-数字格式化为货币。一旦我这样做了,排序就不能正常工作了,因为它是按字符串而不是数字排序的。在格式化列后,我如何才能启用backgrid排序呢?
Backgrid支持数字、整数、日期/时刻。找不到货币的扩展名
这是我的格式化程序类

formatter: _.extend({}, Backgrid.CellFormatter.prototype, {
    fromRaw: function(rawData) {
      var re = /\-/;
      if (rawData === "" || rawData == null) {
        return "";
      } else if (rawData.match(re)) {
        return "-" + accounting.formatMoney(rawData.substr(1));
      } else {
        return accounting.formatMoney(rawData);
      }
    },
    toRaw: function(formattedData) {
      return formattedData;
    }

  }),

这是我的网格

var grid = new Backgrid.Grid({
collection: collection,
columns: [
{
  name: "cost",
  label: "Cost",
  cell: "number",
  formatter: currencyFormater 
  sortable: true
},
{
  name: "type",
  label: "Type",
  cell: Backgrid.NumberCell,
  sortable: true
}
]});

数据示例:

{ id: 1, cost: "150", type: 3 },
{ id: 2, cost: "12516.30", type: 2 },
{ id: 3, cost: "21400.85", type: 1 },
{ id: 4, cost: "146558.50", type: 1 },
{ id: 5, cost: "139982.75", type: 1 }
u4dcyp6a

u4dcyp6a1#

最后我使用sortValue根据值进行特定的排序。在我的例子中,我使用parseFloat和字符串值。

var grid = new Backgrid.Grid({
collection: collection,
columns: [
 {
   name: "cost",
   label: "Cost",
   cell: "number",
   sortValue: function(model) {
     return parseFloat(model.get("cost"));
 },
 formatter: currencyFormater 
 sortable: true
 },
 …
]});

相关问题