How to pass data from JSF to a Java Applet -
I am creating a web application with JSF and ICEFaces. Now I have a Java applet in one of the JSF pages. Integrated.
The question is, how can I put the information stored in the backing bean into the applet? I do not think I need a bidirectional communication. For example, after killing the button causes the applet to be reloaded with the new data collected after I have stored data using ICEFaces input components.
Thank you
OK Finally, I think that your applet is not in your model Should represent some type of scene. So your JSF will have your visual / control in an MVC context, and you will have some backend models. Your applet is another view on this model, so you should make your applet a supervisor or listener on your model, and when JSF has made changes to the model, you should ignite an event / inform the audience That model has changed.
Comments
Post a Comment