Hi,
Here is the situation I'm at right now. I have a list of requests on my bean such as
public void processUpdates {
for (MyRequest req: requests) {
facade.process(req);
}
}
Currently, in the front-end, I have a showing each request and its process status in 2 columns. I can display the status after all requests have been processed. However, I'd like to display a status update in front-end as soon as each request is processed successfully. What I'm envisioning is like, when a software is installed on PC, before it actually installs all components, it shows a list of components to install. Once a user clicks "Install", it shows which component is being installed and once it's done, it shows a check mark, and so on. How can I achieve that in JSF?
I appreciate your time and help!