0

如何防止在加载我的网格(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()
    ... 
 ]...
4

1 回答 1

0

如果你使用普通的 ExtJS 3.4 它不应该发生。通常在viewready事件处理程序中选择默认行。

看我的小提琴:http: //jsfiddle.net/ak3vB/1/

于 2012-12-02T20:51:45.013 回答