Telerik MVC网格:获取父行客户端

时间:2011-09-28 17:59:19

标签: asp.net-mvc telerik-grid telerik-mvc

我正在尝试获取Telerik MVC Grid的子行的onEdit事件的父行中的列值。我怎么做到这一点?

e.target.parentNode.parentNode.parentNode.innerHTML为我提供了父行的表格行。我现在需要解析这个来获取我想要的列数据。有人知道更优雅的解决方案吗?

史蒂夫

1 个答案:

答案 0 :(得分:1)

使用$(e.target).parent('tr').find('td:nth-child(2)').text(),其中2是您想要内容的列。