Click here to Skip to main content
Licence 
First Posted 25 Dec 2002
Views 336,476
Bookmarked 71 times

A ComboBox in a DataGrid

By | 25 Dec 2002 | Article
Descendant from DataGridColumnStyle.

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 Pinmemberarunasingh12342:02 13 May '09  
GeneralCombobox in Datagrid [modified] Pinmemberindian1436:54 16 Jan '09  
GeneralThank you Pinmemberscheidel2123:29 13 Apr '08  
GeneralTK Pinmemberzhouyu53722:53 22 Nov '06  
QuestionHow to add SelectedIndexChanged [modified] Pinmemberpandia284:34 15 Aug '06  
Question.NET 2.0 Pinmembersteffen.glaser5:45 10 Aug '06  
QuestionErrorProvider for DataGrid Pinmembergn14:38 8 May '06  
GeneralRegarding DataGrid Pinmemberdayakar_dn22:55 2 May '06  
GeneralAlternatingBackColor PinmemberKai Michael Wadsack8:16 29 Dec '05  
GeneralThe comboBox column not showing on DG PinmemberAlphaD8:54 11 Oct '05  
Generalitem selection in combobox control Pinsussnehap20:11 10 Oct '05  
GeneralThanks PinmemberPatrickGawley3:22 29 Sep '05  
QuestionCombobox in first column doesn't work Pinmembermcshadow882:58 30 Aug '05  
GeneralGreat Pinmembercute bird8:46 24 Aug '05  
GeneralError when trying to use Pinmembershof17:21 10 Apr '05  
GeneralRe: Error when trying to use Pinmembergingertez4:08 21 Jun '06  
GeneralSelection "Bug" in ComboBox component PinsussJ.J. Hendriksen7:31 1 Mar '05  
QuestionHow can I change A ComboBox in a DataGrid ... Pinmemberaoyee2:59 25 Feb '05  
GeneralNew row in DataGrid Pinmembermsenkerik0:20 2 Dec '04  
GeneralI can't use it Pinsussg0deus6: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 Jonas8: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. PinmemberWooV0: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. Pinmemberpittaman21:33 23 Aug '07  
GeneralProblem when adding element PinmemberArch4ngel5:31 16 Aug '04  
GeneralCorrection to this grid Sudhakar Jalli or Jan Wiggers please reply! PinsussChristian Findlay14: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
Web03 | 2.5.120517.1 | Last Updated 26 Dec 2002
Article Copyright 2002 by Jan Wiggers
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid