I have problem with DevExpress XtraGrid. I wont to make a column of CheckedComboBoxEdit's, but i dont know how to make them work separately. For example, in first row my CheckedComboBoxEdit will contain "a" and "b", and in second "b", "c", "d".
I thought i can use sth like this:
List<CheckedListBoxItem> listOfCheckedItems = new List<CheckedListBoxItem>();
listOfCheckedItems.Add( new CheckedListBoxItem( "test" ) );
CheckedComboBoxEdit checkedCombo = new CheckedComboBoxEdit();
gridView1.AddNewRow();
gridView1.SetRowCellValue( gridView1.RowCount - 1, gridView1.Columns[ 1 ], checkedCombo );
Where: gridView1 is MainView of my gridControl.