0
對於使用複選框選擇內容的網格,我正在使用Dgrid選擇網格。但是,只有樹的子節點纔會顯示覆選框,因爲父級只是類別,不能被選中。以前我使用過編輯器插件,但它在清除選擇時產生了困難(具體地說,網格的「clearSelection」方法什麼也沒做)。我切換到選擇器插件,所以現在選擇和取消選擇行工作正常,但現在我似乎無法找出一種方法來隱藏某些行而不是其他人的複選框。根據行內容使DGrid選擇器顯示或隱藏
原始代碼
var columns = [
editor({
label: " ",
field: "itemSelected",
sortable: false,
width: 33,
canEdit: function(object) {
// only add checkboxes for child objects
return object.type === "child";
}
}, "checkbox"),
tree({
label: "Item",
field: "shortItemId",
width: 150,
shouldExpand: function() {
return 1;
}
}),
{
label: "Grouping Name",
field: "groupingName"
}
];
var itemGrid = new SelectionGrid({
store: itemStore,
style: {
width: '99%',
height: '99%'
},
columns: columns,
sort: [{attribute: "shortItemId", descending: false}]
});
我使用的編輯器來隱藏複選框「的Editon」參數,但只選擇插件有「已禁用」參數,它不會隱藏場在所有。
有沒有一種方法可以使用選擇器隱藏複選框,就像我對編輯器所做的那樣?
謝謝。這工作完美。 – mja