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

How to load Data From the RadGridView to the TextBoxes

2 Answers 92 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Muhammad
Top achievements
Rank 1
Muhammad asked on 15 Jan 2011, 10:40 PM
Hi Guys !!
              I am new here.I tried searching this question related material on this forum but cant able to find it out.... My Question is How to Load the Selected Value of Cell into the Text boxes. In Normal I know how to do via DataGridView. But cant able to figure out this thing in Telerik Controls.. Please Any Buddy know about this thing ???

2 Answers, 1 is accepted

Sort by
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 15 Jan 2011, 10:47 PM
Hello, and welcome to the forums.

In the RadGridView, you can get the value of the current cell at any time via
Me.RadGridView1.CurrentCell.Value

So, in this cause, you just need to set the label text to the current cell value
Me.RadLabel1.Text = Me.RadGridView.CurrentCell.Value.ToString()


Hope that helps, but if you have further questions, please let me know
Richard
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 15 Jan 2011, 10:50 PM
In addition, there is a help article that covers this topic here
Richard
Tags
GridView
Asked by
Muhammad
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Share this question
or