Displaying Progress Indicators
Summary
- AdapTable makes it possible to display a Progress Indicator during a long-running operation
AdapTable allows developers to create a Progress Indicators.
These will display when an operation takes a significant time to run.
Caution
- This page describes how to provide progress indicators when using vanilla / pure TypeScript AdapTable
- For Framework-specific instructions, see Angular Progress Indicators or React Progress Indicators
These can be displayed (and then hidden) at run-time using functions in the UserInterfaceApi.
Find Out More
It is also possible to display Custom Window Popups to display more general information
Developers can either simply provide the text to display and use AdapTable's default rendering, or can provide custom rendering which will be used instead.
The Progress Indicator is managed programatically via 2 companion functions in User Interface Api::
showProgressIndicator- displays the Progress Indicator (including with custom rendering if required)hideProgressIndicator- closes the Progress Indicator
Deep Dive
Configuring the Progress Indicator
Displaying a Progress Indicator
- This example contains 3 Custom Dashboard Buttons that each open a Progress Indicator:
Show Standard Progress Indicator- displays the text it is given and uses the default AdapTable renderingShow Custom Progress Indicator- displays using custom rendering that was suppliedShow New Dialog Indicator- displays using a replacement Dialog
- All 3 Progress Indicators display for 5 seconds (before being hidden via
hideProgressIndicator)
Try It Out
- Click the 3 Dashboard Buttons to see the associated Progress Indicators