Hi,
I'm using CheckBoxRowSelect to select some rows on the xtragrid.
The option selection is set that way :
C#this.gridViewAdresses.OptionsSelection.CheckBoxSelectorColumnWidth = 30;
this.gridViewAdresses.OptionsSelection.EnableAppearanceFocusedCell = false;
this.gridViewAdresses.OptionsSelection.EnableAppearanceFocusedRow = false;
this.gridViewAdresses.OptionsSelection.EnableAppearanceHideSelection = false;
this.gridViewAdresses.OptionsSelection.MultiSelect = true;
this.gridViewAdresses.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
this.gridViewAdresses.OptionsSelection.ShowCheckBoxSelectorInColumnHeader = DevExpress.Utils.DefaultBoolean.True;
My problem is that if I click on another cell, it deselect all previous checked rows and select the row I just click on.
I want to keep the rows I checked previously, and only select a new one when the checkbox is clicked, and only on that cell, not when I click on another one.
What am I doing wrong ?
regards