指定 RadGrid 的最大页面大小?
是否有一个属性允许我指定 Rad Grid 的最大页面大小?
我有一个 radgrid,它默认为 10,但用户可以更改它。如果有 1000 条记录,用户可以指定 1000 条,这将需要很长时间才能呈现。想要将页面大小限制为 50 左右。
解决方案
感谢 HalfTrackMindMan,我已经发布了解决方案。
protected void rgSearchResults_PageSizeChanged(object sender, GridPageSizeChangedEventArgs e)
{
if (e.NewPageSize > 50)
{
e.Canceled = true;
rgSearchResults.PageSize = 50;
}
}
Is there a property that allows me to specify the max page size of a Rad Grid?
I have a radgrid and it defaults to 10 but the user can change this. If there is 1000s of records, the user can specify 1000 and it'll take ages to render. Would like to limit the page size to like 50 or something.
SOLUTION
Thanks to HalfTrackMindMan, I have posted the solution.
protected void rgSearchResults_PageSizeChanged(object sender, GridPageSizeChangedEventArgs e)
{
if (e.NewPageSize > 50)
{
e.Canceled = true;
rgSearchResults.PageSize = 50;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
绑定到 RadGrid 的 PageSizeChanged 事件,如果 NewPageSize 太大,请将 GridPageSizeChangedEventArgs 的 Canceled 属性值设置为 true。
Bind to the PageSizeChanged event of the RadGrid and if NewPageSize is to much set Canceled property value of GridPageSizeChangedEventArgs to true.