我有两个组合框(类别和子类别),我想呈现取决于类别组合框的选择 id 的子类别组合框。但是,子类别组合框不呈现?这是我的代码,
<h:panelGrid>
<h:outputText value="Cateogyr : "/>
<rich:comboBox defaultLabel="Enter some value" >
<a4j:support event="onchange" reRender="subCombo" ajaxSingle="true"/>
<f:selectItems value="#{bookManager.categoryList}" />
</rich:comboBox>
</h:panelGrid>
<h:panelGrid>
<h:outputText value="Sub Category : "/>
<rich:comboBox defaultLabel="Enter some value" id="subCombo">
<f:selectItems value="#{bookManager.subCategoryList}" />
</rich:comboBox>
</h:panelGrid>
我在渲染子类别组合框的 backing bean 中打印出来,但它没有出现。请,如果你有任何想法,让我知道。