Online export multiple views

It is now possible in the online export to export multiple views at once. Before it was only possible to export what was currently on the screen.
Now you can collect multiple views and then export them together.

  1. Add the biExport widget to all pages which you want to export.
  2. On each page add a button with the following onClick function (reference the biExport widget that is on that page):

    Application.showBusyIndicator("Adding View...");
    biExport_1.addView([]);
    Application.hideBusyIndicator(); 
  3. Add another button to trigger the export:

    biExport_1.doExportViews("XLS");
    biExport_1.clearViews();

The resulting export can now contain information from multiple views and enables users to export multiple pages.

Bastian Buchholz
Author: Bastian Buchholz
Creation date: 10.03.2026
Category:
back to overview