如何阻止在加载网格时选择第一个复选框(EditorGridPanel) 我的问题是它总是检查第一行。
我正在使用Ext JS 3.4。
代码段:
var chkboxSelModelUser = new com.thecompany.ux.grid.CheckboxSelectionModel();
var userGrid = new com.thecompany.ux.grid.EditorGridPanel({
store: that.userStore,
selModel: chkboxSelModelUser
region:'center',
margins: '0 5 5 5',
frame: false,
border: false,
columns: [chkboxSelModelUser, new com.thecompany.ux.grid.RowNumberer()
...
]...
答案 0 :(得分:0)
如果使用普通的ExtJS 3.4,则不应该发生。通常在viewready
事件处理程序中选择默认行。
看我的小提琴:http://jsfiddle.net/ak3vB/1/