詳細は次のとおりです。
前もって感謝します!!!
より良いソリューションは常に歓迎されます!!!
grid.getStore().load({
scope:this,
callback: function (records, operation, success) {
if(success){
/*var store = grid.getStore();
var records = [];
store.queryBy(function(record,id){
if(record.data.chkd){
records.push(record);
}
console.log(id);
},this);
grid.getSelectionModel().select(records,false,false);
*/
var sm = grid.getSelectionModel();
Ext.each(records, function(record) {
if(record.data.chkd){
var row = record.index;
sm.select(row, true);
}
});
}else{
//alert(success);
//console.log(operation.exception);
}
}}
);