我正在开发一个JSF应用程序 我有2个selectOnemenu控件和提交按钮。 如果2个字段的值相等,我需要禁用该按钮
<h:selectOneMenu id="from" value="#{currencyBean.history.fromCurrency}" >
<f:selectItems value="#{currencyBean.currency}" var="c" itemValue="#{c}" itemLabel="#{c.name}"/>
</h:selectOneMenu>
<p:outputLabel for="to" value="to:" />
<h:selectOneMenu id="to" value="#{currencyBean.history.toCurrency}" >
<f:selectItems value="#{currencyBean.currency}" var="c" itemValue="#{c}" itemLabel="#{c.name}"/>
</h:selectOneMenu>
<p:commandButton id="calculateButton" value="Convert" update=":convert :historyPanel" onstart="PF('statusDialog').show()" onsuccess="PF('statusDialog').hide()" validateClient="true" ajax="true" action="#{currencyBean.Calculate()}" />
我尝试将onchange与ajax一起使用,但每次我更改一个下拉列表时,第二个drowpdown的值在backbean中变为null,所以我无法读取它。
这是我的backbean
@Named(value = "currencyBean")
@RequestScoped
public class CurrencyBean implements Serializable {
/**
* Creates a new instance of CurrencyBean
*/
private History history;
private Currency currency;
private Date currentDate;
@Inject
private Loginbean loginBean;
private List<History> historyList;
public List<History> getHistoryList() {
int userId = loginBean.getUserId();
if (userId != -1) {
return new HistoryHelper().GetHistoryListByUser(userId);
}
return null;
}
public CurrencyBean() {
history = new History();
}
public History getHistory() {
return history;
}
public void setHistory(History history) {
this.history = history;
}
public Currency[] getCurrency() {
return Currency.values();
}
public Date getCurrentDate() {
return new Date();
}
public void Calculate() {
int userId = loginBean.getUserId();
if (userId != -1) {
new CurrencyClient().Convert(userId, this.history);
}
}
}
任何线索?
答案 0 :(得分:2)
我的假设是您的所有问题都来自您的托管bean范围。您有@Request
范围,因此每个请求都会从容器中删除托管bean,因此当您定义onchange="submit()"
时(这只是我的假设,因为您尚未定义如何实现onchange属性)并且您选择更新此组件的一个selectBox组件值的值,但第一个值仍为null。当您选择第二个selectBox时,从第一个selectBox更新的值不再存在,因为在第一个请求后已删除了托管bean。您应该尝试更广泛的范围,例如@ViewScope
。如果它没有帮助,则需要进一步的信息,例如implementation onchange属性