我遇到了IceFaces的问题,我尝试更改ace:textEntry取决于在冰上选择的项目:selectOneMenu。
此外,我不需要去新页面,我希望它每次更改时都是AJAX和reflesh。 我试着这样做:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ice="http://www.icesoft.com/icefaces/component"
xmlns:ace="http://www.icefaces.org/icefaces/components"
xmlns:icecore="http://www.icefaces.org/icefaces/core">
<f:view>
<ice:selectOneMenu partialSubmit="true" onchange="submit()"
value="#{testBean.selectedItem}"
valueChangeListener="#{testBean.selectionChanged}"
immediate="true">
<f:selectItems value="#{testBean.standardList}"
var="itemValue" itemLabel="#{itemValue}"
itemValue="#{itemValue}" />
</ice:selectOneMenu>
<ace:textEntry labelPosition="left" label="Output text: " id="output" value="#{testBean.outputItem}" >
<ace:ajax render="@this"/>
</ace:textEntry>
</f:view>
和bean:
import java.util.Arrays;
import java.util.List;
import javax.faces.bean.CustomScoped;
import javax.faces.bean.ManagedBean;
import javax.faces.event.ValueChangeEvent;
import javax.inject.Inject;
import org.slf4j.Logger;
@ManagedBean
@CustomScoped(value = "#{window}")
public class TestBean {
@Inject
private Logger logger;
private String selectedItem;
private String outputItem;
private List<String> standardList = Arrays.asList("Artur","Adam","Mirek");
public void selectionChanged(ValueChangeEvent e){
this.outputItem = this.selectedItem;
logger.info(this.outputItem);
}
public String getSelectedItem() {
return selectedItem;
}
public void setSelectedItem(String selectedItem) {
this.selectedItem = selectedItem;
}
public List<String> getStandardList() {
return standardList;
}
public void setStandardList(List<String> standardList) {
this.standardList = standardList;
}
public String getOutputItem() {
return outputItem;
}
public void setOutputItem(String outputItem) {
this.outputItem = outputItem;
}
但它不起作用,任何解决方案?大thx。
答案 0 :(得分:3)
首先,您的ace:ajax
不在正确的位置。它应该在ice:selectOneMenu
下。
其次,我建议您使用ice:selectOneMenu
,而不是使用h:selectOneMenu
。随着时间的推移,当你不使用ice
中的任何东西时,一切都会更好。 h
和ace
的混合效果非常好。
我创建了一个像你这样的示例项目,我能够让它像这样工作:
<h:form>
<h:selectOneMenu value="#{Bean.valueOutput}">
<f:selectItems value="#{Bean.values}" />
<f:ajax event="change" render="output"/>
</h:selectOneMenu>
<ace:textEntry labelPosition="left" label="Output text: " id="output" value="#{Bean.valueOutput}" />
</h:form>
Bean.java没什么特别的,只有普通的声明和get / set。
使用ICEfaces 3.2和JSF 2.1.6进行测试。