How to avoid page flicker in JSF 1.1 + Ajax4jsf?
I am developing a small application usng JSF 1.1, Ajax4jsf and Tiles. When I click the a4j:commandLink
, the entire page is reloaded. I want t开发者_运维技巧o update only portion of the page. How to resolve that?
<a4j:commandLink value="Get greeting" reRender="greeting" />
You must to use the property reRender to update some section of your page.
For more information, see this link.
精彩评论