I have a grid setup to allow users to select multiple rows clientside, I then want to loop through the selected items (server side) and take the data from each row and add it to another table. How can I get to the data ? Ive tried this, but it doesnt work
private void InsertLocations()
{
Telerik.Web.UI.GridItemCollection gic = this.RadGrid2.SelectedItems;
foreach (Telerik.Web.UI.GridItem gi in gic)
{
string location = DataBinder.Eval(gi.DataItem, "Location").ToString();
}
}