我有一个包含数据的网格面板,我可以按store.getcount()
显示网格中的记录总数。当我点击一条记录时,我想显示所选记录的编号。
例如:
答案 0 :(得分:3)
grid.getSelectionModel().getCount()
答案 1 :(得分:0)
在网格选择监听器中尝试此操作:
listeners:{
select: function(selModel, record, index, options) {
your_textfield.setValue(index+'/'+Ext.getCmp('yourGridId').store.getCount());
}
}