1

i using CheckboxModel like

,selModel: Ext.create('Ext.selection.CheckboxModel', {
        mode: 'MULTI',
        checkOnly: true
}

I want When i click a row and it will be selected. I using

grid.getSelectionModel().select(rowIndex, true);

But that row also turn on Checkbox at the same time.
I want selected row and it don't influence to checkboxmodel thanks

DeLe
  • 2,442
  • 19
  • 88
  • 133

1 Answers1

1

CheckboxModel's purpose is row selection. The functionality you actually want is provided by the Ext.ux.CheckColumn. See the docs at: http://docs.sencha.com/extjs/4.1.0/#!/api/Ext.ux.CheckColumn

Reimius
  • 5,694
  • 5
  • 24
  • 42