我有一个 dojo (1.8.1) DataGrid,我无法检索 DataGrid 中的所有选定项目(网格中大约有 171 条记录)。问题是返回到 selectedItem 的某些数据为空。
有趣的是,如果我一直滚动到 DataGrid 的底部,然后运行下面的代码,我会得到所有记录..这很奇怪..
var gridy = dijit.byId("grid");
var items = gridy.selection.getSelected();
if (items.length) {
dojo.forEach(items, function(selectedItem) {
if (selectedItem !== null) {
dojo.forEach(gridy.store.getAttributes(selectedItem),
function(attribute){
var value = gridy.store.getValues(selectedItem, attribute);
alert('attribute: ' + attribute + ', value: ' + value);
});
}
});
}
So, when all items in the grid are selected (171) I only get 50 items showing as selected and the rest are null for selectedItem variable. 奇怪的问题,看起来像 DataGrid 中的错误?
谢谢!!