Hi,
I am using a RadGridView and data virtualization. My itemssource is a VirtualQueryableCollectionView and the LoadSize is set to 40. I have implemeted the export to Excel. Now in Excel I only recieved 40 data rows. What can I do to export the whole grid?
Thanks for help in advance
Mechthild
I am using a RadGridView and data virtualization. My itemssource is a VirtualQueryableCollectionView and the LoadSize is set to 40. I have implemeted the export to Excel. Now in Excel I only recieved 40 data rows. What can I do to export the whole grid?
VirtualQueryableCollectionView view = new VirtualQueryableCollectionView(viewModel0.GetQuery()); view.LoadSize = 40; EntityDataGrid.ItemsSource = view;
using (Stream stream = dialog.OpenFile()) { GridViewExportOptions exportOptions = new GridViewExportOptions(); exportOptions.Format = format; exportOptions.ShowColumnFooters = false; exportOptions.ShowColumnHeaders = true; exportOptions.ShowGroupFooters = true; EntityDataGrid.Export(stream, exportOptions); }Mechthild
