Devexpress Aspx Gridview 控件。在至少应用一个筛选器之前不想显示任何行
我目前正在开发一个基于 C# 的 ASP.NET 页面。
我正在使用 Devexpress Aspx Gridview 控件来允许用户过滤我的 asp.net 网页上的各种数据。此类数据的一些示例包括用户个人资料和用户撰写的文章。
我想要的是能够让我的 gridview 控件在用户输入至少一个筛选参数之前不返回任何行。原因是我希望该控件对最终用户来说更像是高级搜索而不是过滤器,并且我不想任意优先考虑数据源返回的前几个条目。
有什么办法可以通过 javascript 或 c# 来实现这一点吗?
I am currently developing a C# based asp.net page.
I am using the Devexpress Aspx Gridview control to allow users to filter various data on my asp.net web page. Some examples of such data include users profiles and articles written by the user.
What I want is to be able to have my gridview control not return any rows until at least one filter parameter is entered by the user. The reason for this is that I want the control to appear to the end user to be an advanced search more than a filter and I do not want to arbitrarily give preference to the first couple of entries returned by the data source.
Is there any way to accomplish this, either via javascript or c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLDataSource 的 Selecting 事件非常适合我:
The Selecting event of the SQLDataSource works ideally for me: