0

Is it possible to store some amount of local data of client in browser using JSF/Richfaces? I tried to google it but did'nt found any link.I am using richfaces 4 on mobile.

focode
  • 648
  • 1
  • 16
  • 39

2 Answers2

0

No, you cannot store data on the client side with JSF/Richfaces, because that is a server side technology. But if you want to use the HTML5 Local Storage feature, you should have a look at these links:

... and many more search results can be found on Google.

On Stackoverflow:

Community
  • 1
  • 1
Manuel
  • 3,828
  • 6
  • 33
  • 48
0

You can store it in cookies, in session, in database. Any of them work in JSF.

Vasil Lukach
  • 3,658
  • 3
  • 31
  • 40