我在我的网格中添加了一个动作列,我试图在推送它时获取一个网格值。
这是我的操作栏:
xtype: 'actioncolumn',
width: 30,
sortable: false,
menuDisabled: true,
items: [{
icon: 'images/refresh16x16.png',
scope: this,
handler: this.onBidHistoryGridlClick
}
这是我的听众:
onBidHistoryGridlClick: function(record, grid, rowIndex){
alert(grid.getStore().getAt(rowIndex).column_name);
}
这不起作用。
有任何想法吗?