I m wondering what is proper way to update elements on my page after event from another element. Lets say I have stateless bean which use services to get data for me, and I have scoped bean which is data model for my elements, scoped bean gets data when flow start in evaluate element from stateless bean. And now how should I get new data from stateless bean to scoped bean and re render elements with new values? Use remote command? It depends on elements? I hope YOu will get my point. I will appreciate any help, samples, whatever :)
We have a search form where the filter is bound to a property on a managed bean (session scope). It s not component binding, its property binding like <h:inputText value="#{searchBean.filter}"/>....