如何从javascript中的GridView(行单击)获取价值

时间:2013-08-14 11:32:20

标签: javascript jquery telerik

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

1 个答案:

答案 0 :(得分:0)

args.get_itemIndexHierarchical();内拨打RadGrid1_OnRowDblClick会为您提供双击的行号。这是你在寻找什么。