您好,我使用 Telerik GridView 我缓存事件(双击行)并且它有效。这里是javascript代码
function RadGrid1_OnRowDblClick(sender, args) {
console.log(sender);
}
Now i need to get value from this Row (this row have ProductID,ProductLoad,Distance),i my case i need the ProductID of the row that i double clicked.
Sow how can i do this?
这是正确的 ans args.getDataKeyValue("ProductID")
但是很重要的补充
<MasterTableView Width="100%" ClientDataKeyNames="ProductID">
</MasterTableView>