Click here to Skip to main content
15,892,839 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm Using Telerik RadDataGridview Component and
Bind a Table to my grid by LINQ instructions
How to show a defined column as combo box when i
edit the row?

I can use following code for example
C#
GridViewComboBoxColumn comboCol = new GridViewComboBoxColumn("col5");
			comboCol.DataSource = colors;
			comboCol.DisplayMember = "Name";
			comboCol.ValueMember = "Name";
			radGridView1.Columns.Add(comboCol); 

but i want use loaded columns as combo box and dont want
add a new column.

what shall i do?
Posted
Updated 25-Aug-12 20:09pm
v3

1 solution

 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900