这是我的问题的简化版本。
<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>
当用户单击 时<a4j:commandButton>
,应重新渲染第一个<a4j:outputPanel>
(panel_1)。但是第二个里面的内容<a4j:outputPanel>
不应该重新渲染。
这可能吗?(至少通过将 更改<a4j:outputPanel>
为另一个组件。)