在backgrid中排序自定义(货币)格式的列

问题描述 投票:2回答:1

我正在使用Backgridjs将数据从json对象显示到表。我目前正在使用格式化程序,将字符串数字格式化为货币。一旦我做到了,排序将不再正确,因为它是以字符串而不是数字进行排序。格式化列后如何启用backgrid排序?

Backgrid支持编号,整数,日期/时刻js。找不到货币的扩展名

这是我的格式化程序类

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 }
javascript backbone.js backgrid
1个回答
0
投票

我最终使用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
 },
 …
]});
© www.soinside.com 2019 - 2024. All rights reserved.