从数据绑定 RadGrid 访问所有数据?

发布于 2024-08-06 18:59:41 字数 136 浏览 4 评论 0原文

有没有办法访问数据绑定 RadGrid 中的所有数据?

我可以访问当前在 RadGrid 上显示的数据,但是是否可以访问绑定到控件但未显示的数据?

假设我有 125 条记录,但页面上只显示 25 条,如何访问其他 100 条?

Is there are way to access all of the data from a databound RadGrid?

I can acess the data that is currently showing on the RadGrid, but is there anyway to access the data that is bound to the control but not shown?

Say I have 125 records, but only 25 are shown on the page, how do I access the other 100?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

杀手六號 2024-08-13 18:59:41

我找到了一个有效的问题解决方案,但我不确定是否有比这更好的解决方案

for (int i = 0; i < Ragrid.Pagecount; i ++)
{
    RadGrid.CurrentPageIndex = i;
    RadGrid.Rebind;

    foreach(GridDataItem item in RadGrid.Items)
    {
         do stuff
    }
}

I found a solution to the question that works, but I am not sure if there is a better solution than this

for (int i = 0; i < Ragrid.Pagecount; i ++)
{
    RadGrid.CurrentPageIndex = i;
    RadGrid.Rebind;

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