Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hello guys,

I have a ASP.NET C# web application.There are some textboxes, comboboxes and one DevExpress GridControl in the form. The user is going to choose or enter the values into them. After that, the user will save and then all information will be sent to the gridcontrol to see and to list which works fine.

However, to update, upon clicking of a grid row all values in the gridcontrol must be sent to the textboxes and comboboxes.

What can I do to get the values from DevExpress GridControl to text and combo boxes? how to read devexpress grid cells?

Could you please guide?

Cheers/deepu

What I have tried:

String strText;

//strText = ASPxGridAllRec.GetRowValues(6, "Remarks").ToString();
strText = ASPxGridAllRec.GetRowValues(1).ToString();
//ASPxGridView1.GetRowValues(1).ToString
lblMessage.Text = strText;
Posted
Comments
Graeme_Grant 26-Jul-17 4:46am    
I assume that you have paid for this commercial library of controls from DevExpress ... As part of that payment, you have support from the developers themselves!

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