I have an dynamic dropdown for Country and State using ajax it works fine on the page when I add that code in the datatable it does not changes the other dropdown ... once again it works without the datatable when added with the t:datatable it does not works any ideas or know issue with Jsf datatable I am using Jsf1.1
Snippet from my jsf
<h:form>
State:
<h:selectOneMenu value="#{locationBean.state}">
<f:selectItems value="#{locationBean.states}"/>
<a4j:support event="onchange" reRender="cityList"/>
</h:selectOneMenu>
<br/>
City:
<h:selectOneMenu value="#{locationBean.city}"
disabled="#{locationBean.cityListDisabled}"
id="cityList">
<f:selectItems value="#{locationBean.cities}"/>
<a4j:support event="onchange" reRender="population"/>
</h:selectOneMenu>
<br/>
Population:
<h:outputText value="#{locationBean.city}"
escape="false"
id="population"/>
</h:form>
Snippet from LocationBean
//Setters and Getters are also there private String state; private String city; private boolean isCityListDisabled = true;
public List<SelectItem> getStates() {
List<SelectItem> states = new ArrayList<SelectItem>();
states.add(new SelectItem("--- Select State ---"));
for(StateInfo stateData: StateInfo.getNearbyStates()) {
states.add(new SelectItem(stateData.getStateName()));
}
return(states);
}
public SelectItem[] getCities() {
SelectItem[] cities = { new SelectItem("--- Choose City ---")};
if(!isCityListDisabled && (state != null)) {
for(StateInfo stateData: StateInfo.getNearbyStates()) {
if(state.equals(stateData.getStateName())) {
cities = stateData.getCities();
break;
}
}
}
return(cities);
}
}
StateInfo
public class StateInfo {
private String stateName;
private SelectItem[] cities;
public StateInfo(String stateName, SelectItem...cities) {
this.stateName = stateName;
this.cities = cities;
}
public String getStateName() {
return(stateName);
}
public SelectItem[] getCities() {
return(cities);
}
private static StateInfo[] nearbyStates =
{ new StateInfo("Maryland",
new SelectItem("<i>unknown</i>",
"--- Choose City ---"),
new SelectItem("635815", "Baltimore"),
new SelectItem("57907", "Frederick"),
new SelectItem("57698", "Gaithersburg"),
new SelectItem("57402", "Rockville")),
new StateInfo("Virginia",
new SelectItem("<i>unknown</i>",
"--- Choose City ---"),
new SelectItem("438415", "Virginia Beach"),
new SelectItem("231954", "Norfolk"),
new SelectItem("218968", "Chesapeake"),
new SelectItem("195965", "Arlington")),
new StateInfo("Pennsylvania",
new SelectItem("<i>unknown</i>",
"--- Choose City ---"),
new SelectItem("1463281", "Philadelphia"),
new SelectItem("316718", "Pittsburgh"),
new SelectItem("106992", "Allentown"),
new SelectItem("102612", "Erie")),
new StateInfo("New Jersey",
new SelectItem("<i>unknown</i>",
"--- Choose City ---"),
new SelectItem("280666", "Newark"),
new SelectItem("239614", "Jersey City"),
new SelectItem("149843", "Paterson"),
new SelectItem("125809", "Elizabeth")),
new StateInfo("New York",
new SelectItem("<i>unknown</i>",
"--- Choose City ---"),
new SelectItem("8143197", "New York"),
new SelectItem("279745", "Buffalo"),
new SelectItem("211091", "Rochester"),
new SelectItem("196425", "Yonkers"))};
public static StateInfo[] getNearbyStates() {
return(nearbyStates);
}
}