I would like to a progress meter in jsf to show the current state of how many rows have been processed as more rows as being processed, I want it to update dynamically. I have tried the following so far: Frontend:
<h:panelGroup id="progress" rendered="#{extractDataController.showProgress}">
<h:outputText value="Rows Extracted:"/>
<h:outputText value="#{extractDataController.rowsProcessed}"/>
<h:outputText value=" / "/>
<h:outputText value="#{extractDataController.totalRows}"/>
</h:panelGroup>
and in the bean I incerement the rowsProcessed variable after the processing of row is complete. But it doesnt update on the frontend. How do i do that?