Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am doing Primefaces poller and I would like to select multiple items with Styleclass="updateable" inside the form. What would be the correct update selector for p:poll in this case? I need only to update parts of the form when the poll is triggered.

share|improve this question

1 Answer

Here you go

<p:poll interval="3"  listener="#{myBean.myMethod}" update="@(.updateable)" /> 

Also take a look at the showcase: PrimeFaces Selectors - @(selector)

PFS does not use findComponent() of UIComponent. It finds the components at client side so it still needs an id to sent to server to mark which components to update so you also need to give an id to components who you select with PFS although you are not reference these ids yourself. JSF impls do not render autogenerated clientIds to keep page size smaller if you don't give an explicit id. (Cagatay Civici)

share|improve this answer
That seems to work only when each updateable class has unique id defined as it uses findComponent function which returns the id of the component. Is there any other way than specifying the unique id for all components in this case? Thanks for the fast reply! – drodil Nov 26 '12 at 7:18
1  
PFS does not use findComponent() of UIComponent. It finds the components at client side so it still needs an id to sent to server to mark which components to update so you also need to give an id to components who you select with PFS although you are not reference these ids yourself. JSF impls do not render autogenerated clientIds to keep page size smaller if you don't give an explicit id. – Cagatay Civici Nov 26 '12 at 7:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.