I'm developing an application using JSF 2.0 and PrimeFaces 3.4. I have two dropdown lists which, depending on what fields are selected, should display the currently selected item in corresponding output texts.
I have an <p:ajax update="outputTextId"> which should trigger when the change is made in the <p:selectOneMenu>. The problem is that the upper dropdown won't ever trigger, but the lower dropdown triggers properly.
Project compiles fine and all data is stored correctly. The backing bean is in the session scope. Here's the relevant Facelets code:
<h:form id="form">
<p:selectOneMenu id="subTypePickList" value="#{MappingBean.selectedSubtype}" valueChangeListener="#{MappingBean.changeListenerSubType}">
<p:ajax event="change" update="testSubTypeOut, itemList, queryArea, outputDisplayName" />
<f:selectItem itemLabel="Select Field" itemValue=""/>
<f:selectItems value="#{MappingBean.mappingStrings}" />
</p:selectOneMenu>
<br/>
<p:inputTextarea id="queryArea" value="#{MappingBean.expression}" />
<br/>
<p:selectOneMenu id="fieldPickList3" value="#{MappingBean.selectedFieldType}" valueChangeListener="#{MappingBean.changeListenerField}">
<p:ajax event="change" update="fieldPickList3, itemList, queryArea, outputDisplayName, testSubTypeOut"/>
<f:selectItem itemLabel="Select Field to Update" itemValue=""/>
<f:selectItems value="#{MappingBean.mappingStrings}" />
</p:selectOneMenu>
<br/>
<h:outputText id="testSubTypeOut" value="#{MappingBean.selectedSubtype}" />
<br/>
<h:outputText id="outputDisplayName" value="#{MappingBean.selectedFieldType}" />
<br/>
<p:commandButton id="executeButton" value="Execute" />
</h:form>
How is this caused and how can I solve it?
Backing Bean: Ive deleted a lot out that is not relevant to the particular problem.
@ManagedBean(name = "MappingBean")
@SessionScoped
public class MappingBean {
private String selectedSubType;
private String selectedFieldType;
public MappingBean() {
}
Next part is just getting a list of strings from a cloud application.
Getters:
public String getSelectedSubtype(){
return selectedSubType;
}
public String getSelectedFieldType(){
return selectedFieldType;
}
Setters:
public void setSelectedSubType(String selectedSubType){
this.selectedSubType = selectedSubType;
}
public void setSelectedFieldType(String selectedFieldType){
this.selectedFieldType = selectedFieldType;
}
Change Listeners:
public void changeListenerSubType(ValueChangeEvent event){
selectedSubType = event.getNewValue().toString();
setSelectedSubType(selectedSubType);
}
public void changeListenerField(ValueChangeEvent event){
selectedFieldType = event.getNewValue().toString();
setSelectedFieldType(selectedFieldType);
}
Hope thats better I cut out what I thought was pretty irrelevant
Thanks!
styleattributes and label and panel components in your code which made your code like a forest. See also stackoverflow.com/tags/jsf/info for some hints. – BalusC Dec 11 '12 at 17:19