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
115
Ultragrid- how to export all data in all the pages to excel
posted

 A request was made to export all data in a report, not just what is displayed on the page currently displayed. This would allow the user the ability to see and manipulate data in whatever fashion that may be prohibited by the paging mechanism. Dev to confirm if this is possible.

Parents
  • 115
    posted

     1. How to disable Export to Excel icon in UltraGrid until export is complete, we need to indicate the export is in progress

    2. This exists in current demo version today, however only the final page should have a label of "Grand Summaries".  All other prior pages should display a label of "Sub-Totals"
    Example • If there are 10 pages of data and the Amount and Base Amount on each page equals 1,000 and 1,500, respectively, I expect 1,000 and 1,500 be displayed at the bottom of each page with a total of 10,000 and 15,000 on the last page.                                                                                                              • Grouping and "Selected Summaries" chosen (if applicable) should remain in tact in Excel

    3. Even if the data shown on grid is of 1 page, how to export ALL the data in the dataset to excel without binding it to Ultragrid

  • 469350
    Offline posted in reply to vani

    AOps said:
     A request was made to export all data in a report, not just what is displayed on the page currently displayed. This would allow the user the ability to see and manipulate data in whatever fashion that may be prohibited by the paging mechanism. Dev to confirm if this is possible.

    This appears to be repeat of the same question I just answered here.

    AOps said:
     1. How to disable Export to Excel icon in UltraGrid until export is complete, we need to indicate the export is in progress

    There are events on the UltraGridExcelExporter that tell you when the operation is complete. The event was changed recently, though, so which even you use depends on what version of the controls you are using. Its either ExportEnded or EndExport.

    AOps said:
    2. This exists in current demo version today, however only the final page should have a label of "Grand Summaries".  All other prior pages should display a label of "Sub-Totals"
    Example • If there are 10 pages of data and the Amount and Base Amount on each page equals 1,000 and 1,500, respectively, I expect 1,000 and 1,500 be displayed at the bottom of each page with a total of 10,000 and 15,000 on the last page.                                                                                                              • Grouping and "Selected Summaries" chosen (if applicable) should remain in tact in Excel

    I'm not sure what you are asking here. The WinGrid has no paging functionality, so this is probably a result of what you are doing with your paging implementation.

    AOps said:
    3. Even if the data shown on grid is of 1 page, how to export ALL the data in the dataset to excel without binding it to Ultragrid

    Once again, I beleive this is the same question I answered here.

Reply Children