Within my form, there are numerous fields where the data is fetched from a server, including dependent data lists. During this data loading process, I would like to freeze the interface by displaying a progress bar. This can be achieved by overlaying a layer with a large z-index over all other elements, with the progress bar displayed in the corner.
I am familiar with implementing this feature using GWT or Vaadin:
- Modal window with progress bar for long tasks
How can this be accomplished using AngularJS? I already know how to achieve it using JavaScript.
This issue is quite common. Are there any existing solutions available?