What else I have to do in order to show ReadAccess enum members in this DatagridViewComboBox?

ReadDataGridViewComboBoxColumn.Items.Clear();
ReadDataGridViewComboBoxColumn.Items.AddRange(ReadAccess.None, ReadAccess.Allowed);
ReadDataGridViewComboBoxColumn.ValueType = typeof(ReadAccess);

here is designer-generated codes about DataGridView:

this.rolesDataGridView.AutoGenerateColumns = false;
this.rolesDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.TableNameDataGridViewTextBoxColumn,
this.ReadDataGridViewComboBoxColumn,
this.WriteDataGridViewComboBoxColumn,
this.ReadCodeDataGridViewComboBoxColumn,
this.ProcessDataGridViewCheckBoxColumn,
this.AdministrateDataGridViewCheckBoxColumn});
this.rolesDataGridView.DataSource = this.bsTablePermissions;

and finally, in after InitializeComponent();, i'm setting DataGridView's DataSource:

this.rolesDataGridView.DataSource = this.RoleTablePermissions;  // a bindingsource list
link|improve this question

Have you done this.Controls.Add(ReadDataGridViewComboBoxColumn) or similar? – George Stocker Nov 8 '10 at 2:41
@George: yes, sure... but when i run the project, the combo box is frozen and i can't open it's list... – Dr TJ Nov 8 '10 at 2:44
Is there more code to instantiate the DataGridView than just this? – George Stocker Nov 8 '10 at 2:50
Just designer generated codes... let me put them here... – Dr TJ Nov 8 '10 at 2:56
Try subscribing to the DataGridView.DataError event and check of there's an error. – jfs Nov 8 '10 at 3:29
feedback

3 Answers

up vote 2 down vote accepted

This is a problem i've come across many times. The DataGridViewComboBoxColumn doesn't know how to reconcile the difference between the enum's string representation and its integral value. Even though you set ValueType to the type of the enum, the DataGridView will try to set the cell's value to the underlying int value - this is why a FormatException will be raised during databinding.

The only way i've found to overcome this problem (short of subclassing the cell type) is to bind the DataGridViewComboBoxColumn to a data source which separates the string values from the integer values. You can use an anonymous type for this purpose:

ReadDataGridViewComboBoxColumn.ValueType = typeof(ReadAccess);
ReadDataGridViewComboBoxColumn.ValueMember = "Value";
ReadDataGridViewComboBoxColumn.DisplayMember = "Display";
ReadDataGridViewComboBoxColumn.DataSource = new ReadAccess[]
    { ReadAccess.None, ReadAccess.Allowed }
    .Select(value => new { Display=value.ToString(), Value=(int)value })
    .ToList();

This way, the DataGridView knows how to relate the cell value with its formatted value.

link|improve this answer
wow... really nice! thanks so much... – Dr TJ Nov 8 '10 at 16:29
@Bradley: I still have problems with this... The Combo box is still frozen and i can't open the list and also, i receive FormatException... – Dr TJ Nov 8 '10 at 18:03
@Dr TJ: Is it possible that one of the other columns in your DataGridView is causing the problem, now that you've fixed this one? Check the ColumnIndex property in your handler for the DataError event. – Bradley Smith Nov 8 '10 at 23:05
@Bradley: I did what you said and the error is on all columns containing combo box... – Dr TJ Nov 9 '10 at 3:31
@Dr TJ: I can't see why it isn't working... Check the Value of one of the affected cells (in the event handler) - is it set to the enum value or an int? In all cases, it was an int when I tried. – Bradley Smith Nov 9 '10 at 3:49
show 3 more comments
feedback

Adding to the answer Bradly Smith provided: One can get all Enum values (instead of naming each individually) easily using this code:

    ReadDataGridViewComboBoxColumn.DataSource =
        new List<ReadAccess>((ReadAccess[]) Enum.GetValues(typeof(ReadAccess)))
        .Select(value => new { Display=value.ToString(), Value=(int)value })
        .ToList();
link|improve this answer
feedback

This is what I did as you (Bradley Smith) said:

#region Set Role ComboBox values

ReadDataGridViewComboBoxColumn.ValueType = typeof(ReadAccess);
ReadDataGridViewComboBoxColumn.DataPropertyName = "Read";
ReadDataGridViewComboBoxColumn.DisplayMember = "Title";
ReadDataGridViewComboBoxColumn.ValueMember = "Value";
ReadDataGridViewComboBoxColumn.DataSource = new ReadAccess[] { ReadAccess.None, ReadAccess.Allowed }
    .Select(x => new { Title = x.ToString(), Value = (int)x }).ToList();

WriteDataGridViewComboBoxColumn.ValueType = typeof(WriteAccess);
WriteDataGridViewComboBoxColumn.DataPropertyName = "Write";
WriteDataGridViewComboBoxColumn.DisplayMember = "Title";
WriteDataGridViewComboBoxColumn.ValueMember = "Value";
WriteDataGridViewComboBoxColumn.DataSource = new WriteAccess[] { WriteAccess.None, WriteAccess.Allowed }
    .Select(x => new { Title = x.ToString(), Value = (int)x }).ToList();

ReadCodeDataGridViewComboBoxColumn.ValueType = typeof(ReadDefinitionAccess);
ReadCodeDataGridViewComboBoxColumn.DataPropertyName = "ReadCode";
ReadCodeDataGridViewComboBoxColumn.DisplayMember = "Title";
ReadCodeDataGridViewComboBoxColumn.ValueMember = "Value";
ReadCodeDataGridViewComboBoxColumn.DataSource = new ReadDefinitionAccess[] { ReadDefinitionAccess.None, ReadDefinitionAccess.Basic, ReadDefinitionAccess.Allowed }
    .Select(x => new { Title = x.ToString(), Value = (int)x }).ToList();

#endregion

After this code i'm reading my database into a collection (RoleTablePermissions)

this.RoleTablePermissions = new TablePermissionCollection();  
foreach (var item in myDatabase.Tables)
    this.RoleTablePermissions.Add(new TablePermissions()
    {
        TableName = item.Name,
        Read = ReadAccess.Allowed,
        Write = WriteAccess.Allowed,
        ReadCode = ReadDefinitionAccess.None,
        Administrate = false,
        ExecuteProcess = true
    });  
this.bsTablePermissions.DataSource = this.RoleTablePermissions;

and RoleTablePermissions is a collection of

public class TablePermissions
{
    public string TableName { get; set; }
    public ReadAccess Read { get; set; }
    public WriteAccess Write { get; set; }
    public ReadDefinitionAccess ReadCode { get; set; }
    public bool ExecuteProcess { get; set; }
    public bool Administrate { get; set; }
}

I really don't know why its not working as you said...
bsTablePermissions is the BindingSource that DataGridView is bound to.

link|improve this answer
It works... the problem was exactly that... I removed (int) and now it works fine. we really didn't need that casting... thank you so much my friend... :) – Dr TJ Nov 9 '10 at 6:41
1  
Ah, I thought that the underlying data source was a DataTable, not a TablePermissionsCollection. In this case, the cell values should be of the enum type, not Int32 - remove the (int) cast in the lambda expression. I have tried to reproduce your problem, but I cannot get the combo box to freeze as you described. – Bradley Smith Nov 9 '10 at 6:46
@Bradley: Yes yes you are right... In DataTable we have to cast it as Int32. – Dr TJ Nov 9 '10 at 6:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.