I'm using JSF 1.1 and Ajax4jsf. I want to show/hide a <h:inputText> on change value of a <h:selectOneMenu> element named "Colors".

For example, if I select "Red" value in <h:selectOneMenu>, then show a <h:inputText> for the intensity of the color selected in <h:selectOneMenu> (high, medium, low).

I'm not sure whether to use Ajax4jsf or plain JavaScript. I would prefer to use Ajax4jsf, but it is too basic.

link|improve this question
What is your question? :) Are you not sure about using ajax4jsf? – yatskevich Jan 13 at 12:28
@IvanYatskevich: My question es: ¿How Hidden/Shows a h:inputText in a form to change value in a h:selectOneMenu element named "Colors" (onchange event) with JSF1.1 and ajax4jsf? – user998871 Jan 13 at 13:24
feedback

1 Answer

up vote 1 down vote accepted

Take a look at <a4j:support/>. This tag gives you an ability to handle various client-side events including onchange event.

Consider an example (taken from the link above):

<h:form id="planetsForm">
  <h:outputLabel value="Select the planet:" for="planets" />

  <h:selectOneMenu id="planets" value="#{planetsMoons.currentPlanet}" valueChangeListener="#{planetsMoons.planetChanged}">
      <f:selectItems value="#{planetsMoons.planetsList}" />
      <a4j:support event="onchange" reRender="moons" />
  </h:selectOneMenu>

  <h:dataTable id="moons" value="#{planetsMoons.moonsList}" var="item">
     <h:column>
        <h:outputText value="#{item}"/>
     </h:column>
  </h:dataTable> 
</h:form>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.