I added unbound columns at run-time on AspxGridView.Init event but this i got question marks on those fields so i cannot select checkboxes. What can i do to solve this problem or to select them should user edit the row but i don't want user to edit the row. Here is what i did to add those unboundcolumns:
GridViewDataCheckColumn coEqual = new GridViewDataCheckColumn();
coEqual.Caption = "Eşittir";
coEqual.Name = "Eşittir";
coEqual.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
coEqual.VisibleIndex = 7;
coEqual.CellStyle.HorizontalAlign = HorizontalAlign.Center;
detailGrid.Columns.Add(coEqual);
I really need this, thank you.