How to re render the a4j:output panelwhich is inside the c:foreach loop?Because the id of the a4j:outputpanel which is in c:foreach is dynamically generated.If i rerender using the static id its rerender only the first one.How can i achieve this?Please help me.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Using c:foreach loop does not add the JSF components into the JSF view tree with unique ID's. Therefore you cannot provide IDs of the components to re-render. If you want to re-render dynamically created a4j:outputPanel components, better way would be by building the a4j:outputPanels through Java code. You can also try to re-render the outer a4j:outputPanel :
|
|||||||||
|