[Solved] Filtering City by state in java – Using Array
Sorry everyone for my uncompleted question. My point is, when I select some value in my menu, this have to change another menu with the values in referente: Front Implementation: <h:panelGroup layout=”block” class=”col-md-3″ id=”panel-state”> <label>#{msg[‘state’]}</label> <h:selectOneMenu id=”mdl-state” value=”#{saisReportQueryBean.reportQuery.state}” binding=”#{uf}” class=”form-control input_no_round_corner”> <f:selectItem itemValue=”#{null}” itemLabel=”#{msg[‘select_state’]}” noSelectionOption=”true” /> <f:selectItems value=”#{saisReportQueryBean.keyState}” var=”estado” itemValue=”#{estado}” itemLabel=”#{estado}” /> <f:ajax listener=”#{saisReportQueryBean.UpdateCityByState(uf.value)}” render=”:panel-city” … Read more