1
votes

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

1

1 Answers

1
votes

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