Hi,
I created a view controller and enabled the muptiple select feature. However, I cannot select individual rows. If I select an individual row, it will select then deselect the row immediately.
It only works if I select the header to select all rows. But selecting individual rows will generate this strange behavior. Please have a look at my code below. Maybe I missed something or I'm doing it the wrong way.
C#private void SomeGridViewController_ViewControlsCreated(object sender, EventArgs e)
{
GridListEditor gridListEditor = ((ListView)View).Editor as GridListEditor;
if (gridListEditor != null)
{
gridListEditor.GridView.OptionsSelection.MultiSelect = true;
gridListEditor.GridView.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
gridListEditor.GridView.OptionsSelection.ShowCheckBoxSelectorInColumnHeader = DevExpress.Utils.DefaultBoolean.False;
gridListEditor.GridView.OptionsSelection.ShowCheckBoxSelectorInGroupRow = DevExpress.Utils.DefaultBoolean.False;
gridListEditor.GridView.OptionsSelection.ShowCheckBoxSelectorInPrintExport = DevExpress.Utils.DefaultBoolean.False;
}
}