0
我在嘗試更改PivotGrid的SelectionModel,但它不起作用。這是我的代碼。有人能說出我做錯了什麼嗎?使用PivotGrid的ExtJS單元格選擇模型不起作用
我需要使用cellSelectionModel,因爲我想深入瞭解,並且需要頂部和左側軸來獲取交點。
我也試過EXTJS 3.3 API中的'cellclick'事件,但沒有運氣。任何人都會獲得除默認RowSelectionModel以外的選擇模型?
var pivotAccumGrid = new Ext.grid.PivotGrid({
store : my_store,
aggregator: 'count',
measure : 'my_field',
sm: new Ext.grid.CellSelectionModel({ //I have also tried selModel for key
listeners: {
cellselect: function(sm,row,col) {
Ext.Msg.alert('click','got a click!');
}
}
}),
topAxis: [ {dataIndex: 'top_field'},{dataIndex: 'top_field2'} ],
leftAxis: [ {dataIndex: 'left_field', width: 80} ],
});