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

How to Get Values in Telerik Radgrid

1 Answer 773 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jaya
Top achievements
Rank 1
Jaya asked on 19 Feb 2015, 11:53 AM
Hi

How to get Column Wise values in Telerik RadGrid  when i click button click events 

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 23 Feb 2015, 02:25 PM
Hi,

Try using the code snippet below:
protected void Button1_Click(object sender, EventArgs e)
{
    foreach (GridDataItem item in RadGrid1.Items)
    {
        string value = item["ColumnUniqueName"].Text;
    }
}

Regards,
Pavlina
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Grid
Asked by
Jaya
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or