rich:tab是否允许reRender属性?如果是 - 当选择了rich:选项卡时,它是否会重新显示该选项卡上的组件? 我试图在单击选项卡后重新渲染一个rich:comboBox,以便在reRendered时显示其defaultLabel。但是,rich:comboBox显示先前选择的值。尝试使用UIInput变量绑定组件并重置其值。没有太大的成功。 我的rich:combo包含在有点像这样的代码中。
<rich:panel style="width:100%;" header="XXXXXXX" id="outerpanel">
<fieldset style="width: 98%"><legend>Role DSDSD</legend>
<h:panelGrid id="roleAcoster" columns="1" columnClasses="alignTop" border="0" cellpadding="30" cellspacing="4">
<a4j:outputPanel id="a4panel">
<rich:panel header="Available Roles" width="100%" id="xPanel">
<h:panelGrid columns="3" border="0" columnClasses="alignTop" cellpadding="3">
<h:outputText value="New York" />
<rich:comboBox value="#{bean.selectedRole}"
disabled="#{bean.show}"
valueChangeListener="#{bean.roleSelected}"
binding="#{bean.roleComboComponent}"
id="availableCombo" immediate="true" defaultLabel="Select Role"
enableManualInput="false" width="204px">
<f:selectItems
value="#{bean.selectItems['AvailableRoles']}" />
<f:attribute name="selectItems"
value="#{bean.selectItems['AvailableRoles']}" />
<a4j:support event="onchange" ajaxSingle="true"
onsubmit="#{rich:component('wait_div')}.show()"
oncomplete="#{rich:component('wait_div')}.hide()"
reRender="role_button_add,roles_panel" />
</rich:comboBox>
<rich:message for="availableCombo" errorClass="errorMessage" />
</h:panelGrid>
</rich:panel>
</a4j:outputPanel>
</h:panelGrid>
</fieldset>
</rich:panel>
谢谢!
答案 0 :(得分:1)
rich:tab确实有reRender属性:http://docs.jboss.org/richfaces/latest_3_3_X/en/tlddoc/rich/tab.html。所以你可以重新渲染任何组件。