我在我的網格中添加了一個actioncolumn,並且我試圖在推送時獲取網格值。從網格中獲取值
這是我actioncolumn:
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);
}
這行不通。
任何想法?
我使用記錄tryed,但我得到一個錯誤:「Uncaught TypeError:Object [object Object] has no method'get'」。有任何想法嗎? – susparsy
修復你的處理程序的參數。查看我的更新。 – rixo
幹得好我的朋友,工作! – susparsy