MVCContrib 网格 - 选择行
我有一个 MVCContrib 网格,显示帐户对象中选定的属性。我希望用户选择一行并转到另一个页面以查看他们单击的行所代表的对象的完整属性。如何将 .Selected 操作添加到网格行?
I have a MVCContrib grid that shows selected properties from an Account object. I want the user to select a row and be taken to another page to view the full properties of the object represented by the row they clicked. How do I add a .Selected action to the rows of the grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我今天刚刚遇到类似的问题。
您可以像这样使用 .RowAttributes:
结果,当您单击 a 时,它将触发 javascript“onclick”并打开 google。您可以使用 Lamda 中的“x”更改 url 以传递 Id。
I just came across a similar problem today.
You can use the .RowAttributes Like so:
In result, when you click on a it will trigger the javascript "onclick" and open up google. You can change the url to pass in an Id by using the "x" in the Lamda.
如果您在 MVC3 上下文中使用网格,您还可以通过服务器端的扩展类来完成此操作:
在客户端,这将采用以下形式:
If you're using the Grid in an MVC3 context, you can also accomplish this via an extensions class on the server side:
and on the client side this will take the form of: