Putting Multi Selection and Checkbox Columns in DevExpress XtraGrid

In DevExpress XtraGrid, the following steps are followed to set multiple selection and checkbox columns.

  • 1 - With "Run Designer", XtraGrid's features are opened.
  • 2 - Set the "MultiSelect" property to "True" from the "OptionsSelection" section.
  • 3 - Set the "MultiSelectMode" property to "CheckBoxRowSelect" from the "OptionsSelection" section.

An example of setting it as code is given below..

myListGridView.OptionsSelection.MultiSelect = true; myListGridView.OptionsSelection.MultiSelectMode = GridMultiSelectMode.CheckBoxRowSelect;

The steps mentioned above may vary slightly depending on the version.



You May Interest

DevExpress XtraGrid Selecting Entire Row on Row Click

DevExpress XtraGrid Column Header Height Adjustment

Getting Value of DevExpress XtraGrid Column

DevExpress XtraGrid Selecting Only Cell on Row Click

DevExpress XtraGrid Cell Text Settings by Column