如何配置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();
});
}
);
答案 0 :(得分:2)
我找到了这篇文章,并希望就此问题提交。 我想在dgrid中获取第一行数据,这是我发现这篇文章的地方。但它帮助我解决了问题。
在第一列中我添加了“get”功能,并且能够找到并选择第一条记录。 我希望这可以帮助任何人尝试获取或选择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'}
];
答案 1 :(得分: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"
);