Sometimes, I have to reRender some component in my applications (using JSF1.2 and RichFaces 3.3.2).

Is possible to do that programmatically in server side, or just the old school way, in client side?

Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Components are always rendered on the server (markup is then sent to the browser for DOM update). If you need to decide in runtime which components to re-render, you can do reRender=#{bean.compoentsToRender}

link|improve this answer
yep, I knew that. But I want to decide in server when do the reRender. – caarlos0 Jul 21 '11 at 19:50
Decide when or what components? – Max Katz Jul 22 '11 at 4:16
when and what, if i just could call a JS in server side, i Would be happy :) – caarlos0 Jul 22 '11 at 12:30
1  
what is defined with reRender or a4j:outputPanel. As to when, has to come from a user action or a4j:poll or a4j:push – Max Katz Jul 25 '11 at 3:04
feedback

Take a look at <a4j:poll> or <a4j:push>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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