在 mvccontrib 网格中自定义 td 内部 html
我想知道是否有办法自定义网格的 td 内部 HTML,例如我需要绑定一些字段,并使其可点击。 除了添加 onclick 属性之外,没有找到任何其他方法。 Columns(column => column.For(x => x.GotToPursue).Attributes(@onclick => "align-right") 有什么建议吗?
I wonder if there way to customize td inner HTML of grid, for example I need to bound some field, and make clickable.
Didn't found any other way, except adding onclick attribute.
Columns(column => column.For(x => x.GotToPursue).Attributes(@onclick => "align-right")
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现的唯一方法是编写您的扩展方法,使用已经形成的innerhtml来更改它。
The only way to this I've found is to write your on extension method, working with already formed innerhtml to change it.