0

您好,我使用 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>
4

1 回答 1

0

args.get_itemIndexHierarchical();在 中调用RadGrid1_OnRowDblClick会为您提供双击的行号。这就是你要找的。

于 2013-08-14T11:53:15.173 回答