5

我有 2 个下拉菜单:类型和代码。如果 value = A 或 B 或 C,我希望 Code 下拉列表根据 Type 下拉列表更改值。如何将 A 或 B 或 C 的值传递给侦听器,以便它可以理解和处理我的 List ?

     <h:outputLabel value="Type" for="idType" />
     <h:selectOneMenu id="idType" value="#{myController.type}">
         <f:selectItem itemLabel="AAA" itemValue="AAA" />
         <f:selectItem itemLabel="BBB" itemValue="BBB" />
         <f:selectItem itemLabel="CCC" itemValue="CCC" />
         <f:ajax event="valueChange" listener="#{myController.changeCodeList}" render="idCode" execute="@this" />
     </h:selectOneMenu>
     <h:outputLabel value="Code" for="idCode" />
     <h:selectOneMenu id="idCode" value="#{myController.code}" >
         <f:selectItem itemLabel="Select ..." noSelectionOption="true" />
         <f:selectItems value="#{myController.codeList}" />
     </h:selectOneMenu>
4

2 回答 2

7

event="valueChange"从您的中删除<f:ajax或替换为event="change"

您不必传递已经存在的值(在changeCodeList方法中)

public void changeCodeList(AjaxBehaviorEvent ev) {
    System.out.println(type); //here is your value
    //now repopulate your list based on the value
    codeList = someMethod(type);
}
于 2012-11-06T06:41:13.537 回答
0

您可以使用

<f:setPropertyActionListener value="You want to pass" target="Backing bean property that you want to set" /> 

n 另一个选择是

<a4j:support ajaxSingle="true" reRender="codeCombo"
                            event="onchange"></a4j:support>

所以使用 a4j:support 您可以在选择类型时重新渲染代码

于 2012-11-06T05:38:18.873 回答