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