标签: asp.net-mvc telerik-grid telerik-mvc
我正在尝试获取Telerik MVC Grid的子行的onEdit事件的父行中的列值。我怎么做到这一点?
e.target.parentNode.parentNode.parentNode.innerHTML为我提供了父行的表格行。我现在需要解析这个来获取我想要的列数据。有人知道更优雅的解决方案吗?
史蒂夫
答案 0 :(得分:1)
使用$(e.target).parent('tr').find('td:nth-child(2)').text(),其中2是您想要内容的列。
$(e.target).parent('tr').find('td:nth-child(2)').text()