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 } }