從 Ext-4 起, Ext.DataView 裡的 multiSelect 屬性就被 Ext.selection.Model 代替了。
問題現象:我在 ext - 6 中的 Ext.DataView 裡添加屬性
selectionModel : new Ext.selection.Model({
mode : 'MULTI'
)}
不能實現多選效果,而且連 listeners 裡的 click 監聽也失效了。
問:誰知道原因嗎?或者誰能提供 Ext.selection.Model 的調用例子嗎? 謝謝!!
selectionModel : new Ext.selection.DataViewModel({
type: 'dataviewmodel',
mode : 'MULTI'
})