This is a migrated thread and some comments may be shown as answers.

problem with GridViewMultiComboBoxColumn

2 Answers 164 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Gustavo
Top achievements
Rank 1
Gustavo asked on 27 Apr 2010, 02:50 PM
im using telerik Q1 2010 and i have a radgridview with an GridViewMultiComboBoxColumn y I can not write directly to the column I have to select an item in the comnobox.

exiate a solution?

2 Answers, 1 is accepted

Sort by
0
Svett
Telerik team
answered on 29 Apr 2010, 10:42 AM
Hi Octavio,

You have to change GridViewMultiComboBoxColumn instance to allow writing in the editor. You need to set its DropDownStyle property to RadDropDownStyle.DropDown:

GridViewComboBoxColumn cbColumn = new GridViewComboBoxColumn("ComboBoxColumn", "ID");
cbColumn.DisplayMember = "DisplayMember";
cbColumn.ValueMember = "ValueMember";
cbColumn.DataSource = dataSource;
cbColumn.DropDownStyle = RadDropDownStyle.DropDown;
this.radGridView.Columns.Add(cbColumn);

A bit off topic, please ask the person who has purchased our controls in your company to add you as a License Developer to the purchase. This will give you full access to the products your company has purchased, to our downloads section, and to our support ticketing system. Additionally, all your questions will be reviewed according to the license you have. More information on License Developers you can find here: www.telerik.com/account/faqs.aspx.
 
Kind regards,
Svett
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Gustavo
Top achievements
Rank 1
answered on 29 Apr 2010, 03:45 PM
Thanks for your help implement and working
Tags
GridView
Asked by
Gustavo
Top achievements
Rank 1
Answers by
Svett
Telerik team
Gustavo
Top achievements
Rank 1
Share this question
or