Telerik MVC Grid:获取父行客户端
我正在尝试获取 Telerik MVC 网格的子行 onEdit 事件的父行中的列的值。我将如何实现这一目标?
e.target.parentNode.parentNode.parentNode.innerHTML 给我父行的表行。我现在需要解析它以获得我想要的列数据。有人知道更优雅的解决方案吗?
史蒂夫
I am trying to get the value of a column in the parent row of a child row's onEdit event for a Telerik MVC Grid. How would I achieve that?
e.target.parentNode.parentNode.parentNode.innerHTML gives me table row of the parent row. I now need to parse this to get the column data I want. Someone know of a more elegant solution?
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$(e.target).parent('tr').find('td:nth-child(2)').text()
其中 2 是您想要其中内容的列。use
$(e.target).parent('tr').find('td:nth-child(2)').text()
where 2 is the column you want the contents of.