devexpress 网格所有页面中选择的行数计数
我有一个 devexpress 网格,其中包含 ASP.NET 和 C#.NET 应用程序中的多个页面。我只想在网格的所有页面中进行 2 个选择。如果我在所有页面中选择超过 2 行,它应该显示一个警报,
如何获取 devexpress 网格的所有页面中选择的行数?
i have a devexpress grid with multiple pages in asp.net and c#.net application. and i want to make only 2 selection in all the pages of the grid . if i select more than 2 rows in all thepages it should display an alert
how to get the count of number of rows selected in all the pages of the devexpress grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们建议您使用以下方法:
1) 使用 CustomJSProperties 事件将当前所选记录的信息从服务器端传递到客户端。
2) 使用 ASPxGridView 的客户端 Init 和 SelectionChanged 事件来管理选择。代码如下:
// CS
// JS
....
We suggest that you use the following approach:
1) pass the information about the currently selected records from the server side to client side using the CustomJSProperties event.
2) use the ASPxGridView's client side Init and SelectionChanged events to manage the selection. Here is the code:
// CS
// JS
....