您好我使用Telerik GridView i cach事件(双击行)并且它可以工作。 这里是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?
这是对的 args.getDataKeyValue( “产品ID”)
但添加
非常重要 <MasterTableView Width="100%" ClientDataKeyNames="ProductID">
</MasterTableView>
答案 0 :(得分:0)
在args.get_itemIndexHierarchical();
内拨打RadGrid1_OnRowDblClick
会为您提供双击的行号。这是你在寻找什么。