Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从数据绑定的 RadGrid 访问所有数据?
我可以访问当前显示在 RadGrid 上的数据,但是是否可以访问绑定到控件但未显示的数据?
假设我有 125 条记录,但页面上只显示了 25 条,我如何访问其他 100 条?
我找到了一个可行的问题的解决方案,但我不确定是否有比这更好的解决方案
for (int i = 0; i < Ragrid.Pagecount; i ++) { RadGrid.CurrentPageIndex = i; RadGrid.Rebind; foreach(GridDataItem item in RadGrid.Items) { do stuff } }