Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
385
Exporting Entire DataSet To Excel
posted

There are two kinds of Infragistics exporters: UltraWebGridDocumentExporter, and UltraWebGridExcelExporter. The UltraWebGridDocumentExporter control has a property called DataExportMode. If you set this to AllDataInDataSource, it exports every record in the DataSet and not just what is displayed on the page. However, the control UltraWebGridExcelExporter doesn't have this property. It only exports one page at a time. So I followed the recommended solution to this problem:

http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=6154

 But this only exports about 50 records (out of over 6000). Why? Why does it decide how many records it wants to export?

Christian