I Drag and Drop the GridControl on the form.Then bind the data from dataSource.
And I add the one column to the grid.Its having all Checkboxes.
But Clicks the checkboxes its not checked, how to check the this checkEdit.
RepositoryItemCheckEdit chxEdit = new RepositoryItemCheckEdit();
DevExpress.XtraGrid.Columns.GridColumn gc = new DevExpress.XtraGrid.Columns.GridColumn();
gridView1.Columns.Add(gc);
gc.Caption = "Select";
gc.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
gc.OptionsColumn.AllowEdit = false;
gc.VisibleIndex = 0;
gc.OptionsColumn.AllowSize = false;
gc.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
chxEdit.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
chxEdit.CheckStyle = CheckStyles.Style6;
chxEdit.ValueChecked = true;
chxEdit.ValueUnchecked = false;
gc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
gc.AppearanceHeader.Options.UseFont = true;
gc.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 9);
gc.ColumnEdit = chxEdit;