0

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

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

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

4

1 回答 1

0

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

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

    foreach(GridDataItem item in RadGrid.Items)
    {
         do stuff
    }
}
于 2009-10-06T17:57:40.420 回答