从 GridView 行中选中的复选框 itens 检索 id
我需要在网页中呈现一个网格视图,并基于每个网格行具有的复选框,我想要检索并提交每个网格列的 ID 值。我正在使用 asp.net mvc 和 mvc contrib grid,但也接受有关如何通过 JQuery 或 Javascript 进行操作的建议。 谢谢。
I need present a grid-view in the web page, and based on the checkbox that each grid row has I want to retrieve and submit a value of the ID of each grid column. I'm using asp.net mvc and the mvc contrib grid, but accept suggestions on how to do via JQuery or Javascript too.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将它们绑定到一个列表,请查看 Phil Haack 的这篇文章,它将告诉您如何操作,并为您提供一些其他场景的想法:http://haacked.com/archive/2008/10/23/model-binding-to-a-list .aspx
You'd need to bind them to a list, take a look at this article from Phil Haack which will tell you how and give you a few ideas for other scenarios: http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx
完成后,我将检查与“id”字段的相同 ID 放在一起,并使用 foreach Jquery 函数检索检查...工作得很好。
Done, I've put the checks with the same ID of the "id" field and retrieveid the cheched with a foreach Jquery function...Worked very well.