I have a Primefaces-based application, in which there are some lengthy operations.
When such operation is being executed, I want to indicate this somehow (like displaying an hourglass or a message, which appears at the center of the screen).
What is the easiest way to do this in Primefaces/JSF?
I’d recommend doing it with
<p:blockUI>. Here’s an example:Take a look at http://www.primefaces.org/showcase/ui/blockUI.jsf for more info.