0

Does anyone know the Telerik/radgrid equivalent of the following statement?

e.InputParameters["id"] = 
   Convert.ToString(myRadgrid.DataKeys[myradgrid.SelectedIndex].Value);

I'm trying to find the row items/values, and haven't been able to figure it out. Any help will be appreciated.

Donut
  • 110,061
  • 20
  • 134
  • 146

1 Answers1

0

Try

myRadgrid.MasterTableView.DataKeyValues[myradgrid.SelectedIndex]["YourDataKeyName"]
CyberDude
  • 8,541
  • 5
  • 29
  • 47