Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道以下语句的 Telerik/radgrid 等效项?
e.InputParameters["id"] = Convert.ToString(myRadgrid.DataKeys[myradgrid.SelectedIndex].Value);
我正在尝试查找行项目/值,但无法弄清楚。任何帮助将不胜感激。
尝试
myRadgrid.MasterTableView.DataKeyValues[myradgrid.SelectedIndex]["YourDataKeyName"]