表行的 Asp.Net MVC WebGrid 帮助器自定义属性
有没有办法为 Asp.Net MVC 中的 WebGrid 帮助器生成的表行分配自定义数据属性?
我想最终得到的是这样的:
<tr data-foo="foo"></tr>
Is there a way to assign custom data attributes for table rows generated by the WebGrid helper in Asp.Net MVC?
What I would like to end up with is something like this:
<tr data-foo="foo"></tr>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,据我所知这是不可能的。您在
tr
上可以做的最好的事情就是应用样式和交替行样式。我推荐 MvcContrib Grid 或 Telerik Mvc Grid 作为 Microsoft WebGrid 帮助程序的更高级替代方案。No, AFAIK that's not possible. The best you could do on a
tr
is to apply a style and an alternating row style. I'd recommend MvcContrib Grid or Telerik Mvc Grid as more advanced alternatives to Microsoft's WebGrid helper.