
Guido Bernuetz
Giga Guru
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 08-11-2022 08:46 AM
Very flexible pages can be created by controlling the visibility of components. One example is the Loader component. It’s very helpful to show the user that something is in progress. Of course, this component should only be visible when the background process is running.
How to:
- Define a client state parameter of type Boolean (eg. “isLoading”)
- Bind this parameter to component visibility. Click the little eye icon on the top right.
- Set the value of this parameter by an event which starts the longer running process (eg. Start or Refresh of Data Broker) to show the loader
- Set the value of this parameter at the end of processing (by Data Fetch Succeeded event of a Data Broker) to hide the Loader
- 2,925 Views
Comments
Mona Hammad
Tera Contributor
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
02-23-2023
02:04 AM
Thanks Guido it was helpful, I could use it at my side.
DHARAVATR
Tera Explorer
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
08-21-2024
11:32 PM
Hi SN Expert @Guido Bernuetz I want to hide loader 1 when guidance is completed, and loader 2 will be shown after that. in the same UI builder page when I get output from the transform script. How do I do that?