gpt4 book ai didi

ajax - 如何在selectOneMenu中将值传递给监听器

转载 作者:行者123 更新时间:2023-12-04 18:11:28 25 4
gpt4 key购买 nike

我有2个下拉菜单:类型和代码。如果值= 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>

最佳答案

从您的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);
}

关于ajax - 如何在selectOneMenu中将值传递给监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13244620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com