是否可以根据条件选择单个 RadGrid 行?
我有一个 RadGrid,它有一个 GridClientSelectColumn。我将AllowRowSelection 设置设置为true。在服务器端是否有一种方法可以有条件地设置单个数据行是否可选?我希望某些行可以在客户端选择,但其他行则不行。
谢谢!
I have a RadGrid that has a GridClientSelectColumn. I have the AllowRowSelection setting set to true. Is there a way on the server end that I can conditionally set whether an individual datarow in selectable or not? I want some rows to be selectable on the client-side, but not others.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看我的 有关此主题的博客文章,了解如何使用 RadGrid for ASP.NET AJAX 实现条件客户端行选择。
我希望它有帮助。
Check out my blog post on this subject to learn how to implement conditional client-side row selection with the RadGrid for ASP.NET AJAX.
I hope it helps.
我不知道您是否可以通过设置单个属性轻松实现这一点,但您也可以将事件附加到相关行的 onclick 以取消事件/事件冒泡,以便行选择事件永远不会触发。
I don't know whether you can easily accomplish that by setting a single property, but alternatively you could attach events to the onclick of the rows in question to cancel events/event bubbling so that the Row Selection event never fires.