我正在尝试访问所选的checkcolumn
个号码,这些号码是网格的第一列。
xtype: 'grid',
itemId: "gdMain",
store: {
type: 'webapi',
api: {
read: 'api/Report/Get'
},
autoLoad: true,
},
columns: [
{ header: 'User', dataIndex: 'user'},
{ header: 'Date', dataIndex: 'date'}
], selModel: {
selType: 'checkboxmodel',
itemId: 'chkUser',
showHeaderCheckbox: true
}
我尝试使用ComponentQuery
Ext.ComponentQuery.query('#gdMain')
但我找不到任何可以告诉我检查行数的属性。
请告诉我如何在网格中选择checkcolumn
的数量。
答案 0 :(得分:0)
您可以通过访问选择模型来获取选择的数量:
theGrid.getSelectionModel().getCount();