使用 VB.net & 在标准 .net 2.0 GridView 中选择行 JavaScript
有谁知道如何让网格通过单击行中的任何单元格来选择行?
目前我能做到这一点的唯一方法是将 AutoGenerateSelectButton 属性设置为 True,但这会在网格中添加一列,并带有粗略的“选择”超链接,并且仅在单击“选择”一词时才选择该行。
当然必须有更好的方法!?!?
注意 - 我不使用 C#
Does anyone know how i can get the grid to select a row by clicking on any cell in the row?
The only way i can do this at the moment is by setting the AutoGenerateSelectButton property to True, but this adds a column to the grid with a crude "select" hyperlink and only selects the row if the word "Select" is cliked on.
Surely there has to be a better way!?!?
NOTE - I do not use C#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要向
RowDataBound
中的行添加一些 javascript有一篇关于它的 CodeProject 文章 这里,其中有更多细节。
You need to add some javascript to the row in
RowDataBound
There's a CodeProject article about it here, which goes into much more detail.
这很古老,但下面是 VB.NET 的等效内容:
This is ancient, but here is the VB.NET equivalent:
如果不想编写任何代码,请查看 Telerik 网格。 在我的网络开发过程中使用它时,我对它非常满意。
And if do not want to write any code check out the client-side selection of the Telerik grid. I am pretty content with it when using it during my web development.