0

I've a DevExpress XtraGrid control some columns and an unbounds column as boolean (so checkbox appears) for users to select the rows/items. I have applied filter as well. On column with checkBox in the filter row a checkbox appears at runtime. I don't want this checkbox to appear in filter row. How to do it?

Brij
  • 11,731
  • 22
  • 78
  • 116

1 Answers1

0

When a RepositoryItemCheckEdit assigned to the Column's ColumnEdit, a check box is also shown in the AutoFilterRow. To replace it with another editor, handle the GridView.CustomRowCellEdit Event, check whether the e.RowHandle parameter equals the GridControl.AutoFilterRowHandle static property and provide a required RepositoryItem to the e.RepositoryItem property

Related link:
1. Assigning Editors to Individual Cells
2. Automatic Filtering Row

DmitryG
  • 17,677
  • 1
  • 30
  • 53