This is a simplified version of my problem.
<h:form id="form1">
<a4j:commandButton value="Ok" reRender="panel_1"/>
<a4j:outputPanel id="panel_1" layout="block" style="height:100px;border:solid 1px;">
Content here should be reRendered
<a4j:outputPanel id="panel_2" layout="block" style="height:50px;border:solid green;color:green;">
Content here should not be reRendered
</a4j:outputPanel>
</a4j:outputPanel>
</h:form>
When user clicked the <a4j:commandButton>
, the first <a4j:outputPanel>
(panel_1) should be reRendered. But the content inside the second <a4j:outputPanel>
should not be reRendered.
Is this possible? (At least by changing the <a4j:outputPanel>
to another component.)