3

如何配置 dgrid 和它的存储来定义在呈现行时是否已经选择了行?

例如,如果我的行数据是这样的:

{
  id: 1,
  name: 'Item Name',
  selected: true
}

我当前的代码是在商店被填充后遍历集合,但我确信必须有一种更有效的方法来做到这一点。

var items = [
  {id: 1, name: 'Item 1', selected: true},
  {id: 2, name: 'Item 2', selected: false}
];

require(
  [
    "dgrid/OnDemandGrid",
    "dgrid/Selection",
    "dojo/store/Memory",
    "dojo/_base/declare",
    "dojo/_base/array"
  ],

  function (OnDemandGrid, Selection, Memory, declare, array) {
    var store = new Memory({
        data: items,
        idProperty: "id"
    });

    var grid = new declare([OnDemandGrid, Selection])({
        selectionMode: "multiple",
        columns: {
          id: { label: "ID" },
          name: { label: "Name" }
        },
        store: store
      }, "MyGrid");

      array.forEach(items, function (item) {
        if (item.selected) {
          grid.select(grid.row(item.id));
        }
      });

      grid.startup();
    });
  }
);
4

2 回答 2

2

我找到了这篇文章并想就这个问题做出承诺。我想获取 dgrid 中的第一行数据,这就是我找到这篇文章的地方。但这对我的解决方案有帮助。

在第一列中,我添加了一个“获取”功能,并且能够找到并选择第一条记录。我希望这可以帮助任何试图获取或选择 dgrid 中的第一条记录的人。

var columns = [
  { label: "Name", field: '_item', x: null,
    formatter: lang.hitch(this, this._nameFormatter),
    get: lang.hitch(this, function(item){
        console.log(item)
        if(!this.x) {
          this.x = item.id;
          this.grid.select(item.id);
          this.detailsPane.setDetails(item.id);
          return item;
        } else {
          return item;
        }
      })
    },

   { label: 'Email', field: 'email',
     formatter: lang.hitch(this, this._emailFormatter)
   },

   { label: "Phone", field: "phone" },
   { label: 'Address', field: 'address' },
   { label: 'City', field: 'city' },
   { label: 'State', field: 'state' },
   { label: 'Zip Code', field: 'zipcode'}
];
于 2013-02-19T03:32:41.597 回答
1

它似乎Selection.js以同样的方式https://github.com/SitePen/dgrid/blob/master/Selection.js#L433,但我刚刚有了一个想法,如何使选择成为渲染过程的一部分:

var grid = new declare([OnDemandGrid, Selection])({
    selectionMode: "multiple",
    store: store,
    columns: {
        id: {
            label: "ID",
            get: function(item) {
                var grid = this.grid;
                if (item.selected === true) {
                    grid.select(grid.row(item.id));
                }
                return item.id;
            }            
        },
        name: { label: "Name" }
    },
    "MyGrid"
);

看看它在行动:http: //jsfiddle.net/phusick/stxZc/

于 2013-02-07T19:00:17.233 回答