Click here to Skip to main content
15,881,204 members
Articles / Programming Languages / C#
Article

ComboBox in a DataGrid

Rate me:
Please Sign up or sign in to vote.
3.38/5 (37 votes)
13 Sep 2006CPOL3 min read 482.6K   6.6K   84   60
How to embed a ComboBox (DropDownList) in a DataGrid.

Introduction

I needed a ComboBox in my DataGrid. After looking around on the web, I found many examples, but none of them worked for me.

With inspiration from Alastair Stells' article here on The Code Project and whatever else I found on the Internet, I have made the following DataGridComboBoxColumn class.

Why did the other examples not work

All the other examples populate the ComboBox with a DataView, but I need to (want to be able to) populate my ComboBox with an IList (ArrayList) instead of a DataView.

C#
columnComboBox = new DataGridComboBoxColumn();
columnComboBox.comboBox.DataSource = new ArrayList(MyDataClass.GetArray());
columnComboBox.comboBox.DisplayMember = "Name";
columnComboBox.comboBox.ValueMember = "GUID";

And MyDataClass.GetArray() returns MyDataClass[], and has two properties named Name and GUID.

The other examples expect columnComboBox.comboBox.DataSource to be a DataView, and it being an ArrayList generates exceptions.

I use the ComboBox to fetch display text

Since you don't know the type of columnComboBox.comboBox.DataSource, you can't use that to translate between the underlying data and what to display in the DataGrid.

Instead, I use the ComboBox itself, by overriding the ComboBox and implementing this method.

C#
public string GetDisplayText(object value) {
   // Get the text.
   string text   = string.Empty;
   int  memIndex  = -1;
   try {
      base.BeginUpdate();
      memIndex     = base.SelectedIndex;
      base.SelectedValue = value.ToString();
      text      = base.SelectedItem.ToString();
      base.SelectedIndex = memIndex;
   } catch {
     return GetValueText(0);
   } finally {
      base.EndUpdate();
   }

   return text;
} // GetDisplayText

What I do is simple. I select the item which displays the text I want, get the text, and then reselect the original item. By doing it this way, it doesn't matter what data source is used.

Because I use the ComboBox itself to fetch the display text, the ComboBox must be populated before the DataGrid is drawn.

Alastair Stells noted about this in his article:

Another issue which arose was an eye-opener! I discovered the ComboBox does not get populated until the ComboBox.Visible property is set for the first time.

This means that the ComboBox can't be used to fetch the initial display text, because it is not visible when the DataGrid is first shown (painted).

I used a normal ComboBox to illustrate the problem and the solution.

C#
ComboBox comboBox = new ComboBox();
comboBox.DataSource = new ArrayList(MyDataClass.GetArray());
comboBox.DisplayMember = "Name"
comboBox.ValueMember = "GUID"
MessageBox.Show(comboBox.Items.Count.ToString()); // THIS IS ALWAYS 0!

I learned that it didn't help to show the ComboBox, but instead I had to set its parent - which internally commits the data from the DataSource to the Items collection.

C#
ComboBox comboBox = new ComboBox();
comboBox.Parent = this; // this is a Form instance in my case.
comboBox.DataSource = new ArrayList(MyDataClass.GetArray());
comboBox.DisplayMember = "Name"
comboBox.ValueMember = "GUID"
// THIS IS MyDataClass.GetArray().Count
MessageBox.Show(comboBox.Items.Count.ToString());

What else about my DataGridComboBoxColumn

The source code is straightforward. First, I inherited DataGridTextBoxColumn, but my class then evolved into inheriting DataGridColumnStyle. This meant that I had to implement the Paint methods, but at this point, I had some examples of that as well. I like the idea of not having an invisible TextBox behind it all.

How to use

Sadly, I don't know how to "register" my DataGridComboBoxColumn with the GridColumnStyles, enabling me to design the DataGrid columns in the designer. This code does it manually:

C#
// Add three MyDataClass objects, to the DataGridComboBox.
// This is the choices which will apear in the ComboBox in the DataGrid.
// You can see in the source that the MyDataClass doubles
// as a static collection, where the new MyDataClass objects
// automatically is added.
// All the MyDataClass objects can be retreived in an array
// with the static method: MyDataClass.GetArray().
if (MyDataClass.GetArray().Length == 0) {
    new MyDataClass("Denmark");
    new MyDataClass("Faroe Islands (DK)");
    new MyDataClass("Finland");
    new MyDataClass("Greenland (DK)");
    new MyDataClass("Iceland");
    new MyDataClass("Norway");
    new MyDataClass("Sweden");
}


// I don't have a database here, so I make my
// own DataTable with two columns and finally
// populate it with some test rows.
DataTable table = new DataTable("TableOne");

DataColumn column = table.Columns.Add();
column.ColumnName = "country";
// Realy a GUID from the DataGridComboBox.
column.DataType = Type.GetType("System.Guid");

column = table.Columns.Add();
column.ColumnName = "notes";
column.DataType = Type.GetType("System.String");

table.Rows.Add(new object[] {MyDataClass.GetArray()[0].GUID, 
                             "Population 5.368.854"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[1].GUID, 
                             "Population 46.011"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[2].GUID, 
                             "Population 5.183.545"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[3].GUID, 
                             "Population 56.376"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[4].GUID, 
                             "Population 279.384"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[5].GUID, 
                             "Population 4.525.116"});
table.Rows.Add(new object[] {MyDataClass.GetArray()[6].GUID, 
                             "Population 8.876.744"});

// Create a DataGridTableStyle object.
DataGridTableStyle tableStyle = new DataGridTableStyle();
DataGridTextBoxColumn columnTextBox;
DataGridComboBoxColumn columnComboBox;
tableStyle.RowHeadersVisible = true;
tableStyle.RowHeaderWidth = 20;

// Add customized columns.
// Column "notes", which is a simple text box.
columnTextBox = new DataGridTextBoxColumn();
columnTextBox.MappingName = "notes";
columnTextBox.HeaderText = "Country notes";
columnTextBox.Width = 200;
tableStyle.GridColumnStyles.Add(columnTextBox);

// Column "country", which is the ComboBox.
columnComboBox = new DataGridComboBoxColumn();
columnComboBox.comboBox.Parent = this; // Commit dataset.
columnComboBox.comboBox.DataSource = 
               new ArrayList(MyDataClass.GetArray());
columnComboBox.comboBox.DisplayMember = "name";
columnComboBox.comboBox.ValueMember = "GUID";
columnComboBox.MappingName = "country";
columnComboBox.HeaderText = "Country";
columnComboBox.Width = 200;
tableStyle.GridColumnStyles.Add(columnComboBox);

// Add the custom TableStyle to the DataGrid.
datagrid.TableStyles.Clear();
datagrid.TableStyles.Add(tableStyle);
datagrid.DataSource = table;
tableStyle.MappingName = "TableOne";

I think I have focused on a problem here: if you want a ComboBox in your DataGrid, and you want to populate the ComboBox with items from an array containing instances of your own class.

I hope someone finds it useful - enjoy.

Updated September 2006

A few bugs have been found in my source code. Apparently, someone still downloads and tries to use the source, even though .NET 2.0 has solved the problem with a ComboBox in a DataGrid. The new download contains the original source, plus a small VS project with the updated source code.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems / Hardware Administrator
Denmark Denmark
See https://rpc-scandinavia.dk/

Comments and Discussions

 
GeneralSOURCE: Form1.cs Pin
René Paw Christensen12-Sep-06 5:21
René Paw Christensen12-Sep-06 5:21 
GeneralSOURCE: DataGridComboBoxColumn.cs Pin
René Paw Christensen12-Sep-06 5:17
René Paw Christensen12-Sep-06 5:17 
GeneralDataGridComboBox Working fine Pin
jssandeep10-Sep-06 20:46
jssandeep10-Sep-06 20:46 
GeneralRe: DataGridComboBox Working fine Pin
jssandeep10-Sep-06 21:03
jssandeep10-Sep-06 21:03 
GeneralThis DataGridCombobox has errors Pin
jssandeep6-Sep-06 22:58
jssandeep6-Sep-06 22:58 
GeneralRe: This DataGridCombobox has errors Pin
jssandeep10-Sep-06 21:09
jssandeep10-Sep-06 21:09 
GeneralDataGrid Custom Column Style Pin
jssandeep6-Sep-06 1:19
jssandeep6-Sep-06 1:19 
GeneralRe: DataGrid Custom Column Style Pin
Eric Engler12-Sep-06 2:30
Eric Engler12-Sep-06 2:30 
I made a different combo box grid after looking around at several others, including this one. Mine has the ability to add new items to the combobox dynamically. In one of my examples I added an item in the ComboBox choices that says "<add new="">". When someone selects that choice, I am adding a new item to the list of choices, and automatically selecting that new item.

My intention was to pop up a dialog when someone selects "<add new="">" and then take their data from the dialog box to stuff into the list of valid choices. This part is simple to do once you see how to add a new item.

You want to do something a little different - I guess you want to allow them to edit an existing choice right there in the grid. My code may help you but it's not exactly what you want.

http://www.ericengler.com/downloads/DataGridComboBoxDemo.zip
GeneralData Picker in Datagrid Pin
tvphuong0514-Jul-06 13:27
tvphuong0514-Jul-06 13:27 
QuestionCan you send me the code in VB .NET Pin
fiaolle6-Jul-06 9:01
fiaolle6-Jul-06 9:01 
QuestionDataGridView in Csharp Pin
jcorrales29-Jun-06 6:51
jcorrales29-Jun-06 6:51 
QuestionWindows DataGridColumns User Controls Pin
dbn_0110-Jan-06 17:48
dbn_0110-Jan-06 17:48 
AnswerRe: Windows DataGridColumns User Controls Pin
jssandeep10-Sep-06 21:16
jssandeep10-Sep-06 21:16 
QuestionHow can i get the ComboBox value Pin
MunazzahNawaz13-Dec-05 1:24
MunazzahNawaz13-Dec-05 1:24 
Questionhow can I Pin
abufool4-Dec-05 11:32
abufool4-Dec-05 11:32 
QuestionNew Row Pin
Ken_McCullough2-Nov-05 10:44
Ken_McCullough2-Nov-05 10:44 
AnswerRe: New Row Pin
Eric Engler9-May-06 13:17
Eric Engler9-May-06 13:17 
GeneralRe: New Row Pin
jssandeep10-Sep-06 20:35
jssandeep10-Sep-06 20:35 
GeneralRe: New Row Pin
jssandeep12-Sep-06 0:15
jssandeep12-Sep-06 0:15 
GeneralWebClient identification Pin
Anonymous5-Jul-05 6:50
Anonymous5-Jul-05 6:50 
GeneralError after editing cell Pin
tlvranas23-Jun-05 3:35
tlvranas23-Jun-05 3:35 
GeneralExample Combobox in datagrid Pin
Anonymous25-Feb-05 10:11
Anonymous25-Feb-05 10:11 
GeneralWay to go , Rene! (live long and prosper) Pin
Todd.Harvey31-Jan-05 10:36
Todd.Harvey31-Jan-05 10:36 
QuestionCan i use this with real database? Pin
estrangeiro26-Sep-04 10:09
estrangeiro26-Sep-04 10:09 
GeneralGrid scrolling problem Pin
CP user25-Aug-04 11:22
CP user25-Aug-04 11:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.