jsf - How to refresh full page periodically -
i trying automatically refesh page in jsf, cannot seem find clear example. can use primefaces refresh whole page every 10 seconds?
use primefaces poll this:
<p:poll interval="10" listener="#{counterbean.listener}" update="@all" />
this scripts calls every 10 seconds counterbean.listener() , refreshes whole page.
Comments
Post a Comment