If there more then 4 Ajaxrefreshrequests on a given page, and then the user opts to save such data, the page refreshes without saving the data.
This is because of the com.sun.faces.numberOfViewsInSession exceeds and a new view is created...which can loose some of the data on the page
Solution to this problem :
In web.xml add this entry
<context-param>
<param-name>com.sun.faces.numberOfViewsInSession</param-name>
<param-value>28</param-value>
</context-param>
Ajax issue in jsf - data lost without saving
Labels: JSF
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment