Click here to Skip to main content
Licence 
First Posted 25 Dec 2002
Views 332,040
Downloads 555
Bookmarked 70 times

A ComboBox in a DataGrid

By Jan Wiggers | 25 Dec 2002
Descendant from DataGridColumnStyle.
6 votes, 10.2%
1
7 votes, 11.9%
2
7 votes, 11.9%
3
20 votes, 33.9%
4
19 votes, 32.2%
5
4.00/5 - 59 votes
6 removed
μ 3.58, σa 2.31 [?]

Introduction

This is a descendant from DataGridColumnStyle and is used to have a ComboBox in a DataGrid column. It is based on an article by Sudhakar Jalli but I found the code not working. I repaired the code and cleaned it up a little.

The DataGridComboBoxColumn class makes it possible to have a ComboBox instead of the default text or checkbox. It took me quite a while to figure it out (even with the help of the article by Sudhakar Jalli). Using it is straightforward.

Using the code

First create a new DataGridTableStyle and make sure the mapping is set to the name of the table in the DataSource where the columns will belong to.

DataGridTableStyle ts=new DataGridTableStyle();
ts.MappingName="Columns";

Then, create the DataTable with the lookup values. This could of course come from the database (And it should BTW)

DataTable AccessDataTypes = new DataTable();
AccessDataTypes.Columns.Add(new DataColumn("Number", typeof(int)));
AccessDataTypes.Columns.Add(new DataColumn("Name", typeof(string)));
AccessDataTypes.Rows.Add(new object[] {3, "Numeric"});
AccessDataTypes.Rows.Add(new object[] {130, "Text"});

Create the DataGridComboBoxColumn and add it to the GridColumnStyles. The first argument (Type) is used for the column caption and the mapping. (Could be changed after creating). The second argument (AccessDataTypes) is the DataTable to use for translation. Name and Number are the column names to use from the table and theGrid is the DataGrid where this column will belong to. Be sure to provide the NullText ; if you don't it will throw an exception if you try to add a row to the DataGrid.

DataGridComboBoxColumn c1=new DataGridComboBoxColumn("Type", 
         AccessDataTypes, "Name", "Number", theGrid);
c1.NullText="3";
ts.GridColumnStyles.Add(c1);

Finally add the newly created TableStyle to the TableStyles array of the DataGrid.

theGrid.TableStyles.Add(ts);

Enjoy the improved DataGrid and be sure to send in your own DataGrid columns!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Jan Wiggers

Web Developer

Netherlands Netherlands

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalcombobox in datagridview Pinmemberarunasingh12343:02 13 May '09  
GeneralCombobox in Datagrid [modified] Pinmemberindian1437:54 16 Jan '09  
GeneralThank you Pinmemberscheidel210:29 14 Apr '08  
GeneralTK Pinmemberzhouyu53723:53 22 Nov '06  
QuestionHow to add SelectedIndexChanged [modified] Pinmemberpandia285:34 15 Aug '06  
Question.NET 2.0 Pinmembersteffen.glaser6:45 10 Aug '06  
QuestionErrorProvider for DataGrid Pinmembergn15:38 8 May '06  
GeneralRegarding DataGrid Pinmemberdayakar_dn23:55 2 May '06  
GeneralAlternatingBackColor PinmemberKai Michael Wadsack9:16 29 Dec '05  
GeneralThe comboBox column not showing on DG PinmemberAlphaD9:54 11 Oct '05  
Generalitem selection in combobox control Pinsussnehap21:11 10 Oct '05  
GeneralThanks PinmemberPatrickGawley4:22 29 Sep '05  
QuestionCombobox in first column doesn't work Pinmembermcshadow883:58 30 Aug '05  
GeneralGreat Pinmembercute bird9:46 24 Aug '05  
GeneralError when trying to use Pinmembershof18:21 10 Apr '05  
GeneralRe: Error when trying to use Pinmembergingertez5:08 21 Jun '06  
GeneralSelection "Bug" in ComboBox component PinsussJ.J. Hendriksen8:31 1 Mar '05  
QuestionHow can I change A ComboBox in a DataGrid ... Pinmemberaoyee3:59 25 Feb '05  
GeneralNew row in DataGrid Pinmembermsenkerik1:20 2 Dec '04  
GeneralI can't use it Pinsussg0deus7:12 5 Oct '04  
GeneralThe designer must create an instance of type 'System.Windows.Forms.DataGridColumnStyle' but it cannot because the type is declared as abstract. PinmemberChris Jonas9:02 21 Aug '04  
GeneralRe: The designer must create an instance of type 'System.Windows.Forms.DataGridColumnStyle' but it cannot because the type is declared as abstract. PinmemberWooV1:14 5 Aug '05  
AnswerRe: The designer must create an instance of type 'System.Windows.Forms.DataGridColumnStyle' but it cannot because the type is declared as abstract. Pinmemberpittaman22:33 23 Aug '07  
GeneralProblem when adding element PinmemberArch4ngel6:31 16 Aug '04  
GeneralCorrection to this grid Sudhakar Jalli or Jan Wiggers please reply! PinsussChristian Findlay15:14 8 Aug '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 26 Dec 2002
Article Copyright 2002 by Jan Wiggers
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid