Telerik MVC Grid:获取父行客户端

发布于 2024-12-07 01:53:06 字数 177 浏览 0 评论 0原文

我正在尝试获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叫嚣ゝ 2024-12-14 01:53:06

使用 $(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文