A button on page xyz.xhtml does invoke this code (using ajax).
FacesContext fc = FacesContext.getCurrentInstance();
NavigationHandler nh = fc.getApplication().getNavigationHandler();
nh.handleNavigation(fc, null, "home");
home points to abc.xhtml. This page contains a table which should be refreshed but this does not happen. Any idea?
How can I refresh without using own JavaScript? I've got a workaround using onload attribute and JavaScript which reloads table using ajax. But this does "flatter" screen. This solution is not sophisticated.
I am using JSF 2, OpenFaces 3 and IE8.
Thank you in advance!