i want to know if it is possible to call JSF events, such as a valueChangeListener and actionListener from an Inner bean, that is, a bean that is an objetc inside ...
I'm wondering if it is possible to observe a CDI event with multiple JSF 2.0 session scoped backing beans. I thought that I could push event/data to multiple sessions by observing ...
I can't inject a ConversationScoped bean into a ViewScoped bean, because the ConversationScoped bean could be shorter lived than the ViewScoped one, or vice versa, depending on whether or not the ...
I have Bean validation working nicely in my application. Now I want to check that a new user does not choose a username that has already been chosen.
In the actionlistener I ...
I want to do multiple actions on different managed beans with the same button, one being scoped session and the other request. In my example I use the same bean for ...
Hi, i got a JSF+Facelets project mainly which consists from tables showing data, each table got a Bean that stores the displayed data, In the footer of the page I got a button that got an actionListener method in which i need to retrieve the bean behind the current table being viewed and than gather the data from the bean and ...