指定 RadGrid 的最大页面大小?

发布于 2024-11-14 13:16:20 字数 420 浏览 2 评论 0原文

是否有一个属性允许我指定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蔚蓝源自深海 2024-11-21 13:16:20

绑定到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文