如何在AspxGridView FilterRow中搜索C#方法?
我使用 AspxGridView 具有 FilterRow 属性。 FilterRow 属性在 LinqServerMode、LinqDataSource 等中工作良好。这意味着:
如果我键入过滤器控件,filterRow 属性工作正常
但我没有在上面编码!我已经这样做了,如下所示:
public class MyClass
{
void GetData()
{
// dosomething
}
}
void FillGrid()
{
MyAspxGridView.DataSource = new MyClass().GetData();
MyAspxGridView.DataBind();
}
您的 FilterRow 的自动填充属性不起作用!我认为这种方法始终打开连接。如何使用 My FillGrid 方法获取数据 thping 过滤器....
i have use AspxGridView which has FilterRow property. FilterRow property is working good in LinqServerMode,LinqDataSource etc. it means that:
if i type filter control, filterRow propert works fine
BUT i don't coding above! i have done that like below:
public class MyClass
{
void GetData()
{
// dosomething
}
}
void FillGrid()
{
MyAspxGridView.DataSource = new MyClass().GetData();
MyAspxGridView.DataBind();
}
Your FilterRow's Autofilling property is not working! i think that this method ALL TIME open connection. How to get data thping filter with My FillGrid Method....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要解决此问题,您应该在 Page_Init 方法中调用 FillGrid 方法。更多详情请参考为什么会分页(排序、分组、过滤) )在 ASPxGridView 中不起作用? 文章。
To resolve this problem, you should call the FillGrid method within the Page_Init method. For more details, please refer to the Why might paging (sorting, grouping, filtering) not work in the ASPxGridView? article.