1 Reply Latest reply on Nov 6, 2007 7:01 AM by panky_p

    refresh modalPanel onchange

    panky_p

      Hi,
      I am trying for h:selectOneMenu in modalPanel which will render panelGrid onchange and i want to refresh modalPanel onchange.
      Is it possible??
      Any clues??

      Thanks

        • 1. Re: refresh modalPanel onchange
          panky_p

          No clues???
          I am trying like this

          <h:selectOneMenu id="list" onchange="this.form.submit();" value="#{myBean.SelectType}">
          
          <f:selectItem itemValue="Ford"/>
          <f:selectItem itemValue="Audi" />
          <f:selectItem itemValue="Bmw" />
          <f:selectItem itemValue="Ferari"/>
          </h:selectOneMenu>
          
          <h:panelGrid rendered="#{myBean.selectType == 'Ford'}"> <h:outputLabel><strong>My Car</strong></h:outputLabel> </h:panelGrid>
          <h:panelGrid rendered="#{myBean.selectType == 'Audi'}"> <h:outputLabel><strong>My NewCar</strong></h:outputLabel> </h:panelGrid>
          <h:panelGrid rendered="#{myBean.selectType == 'BMW'}"> <h:outputLabel><strong>My Brand New Car</strong></h:outputLabel> </h:panelGrid>
          
          
          when I select from list modalPanel get submitted that is because of
          onchange="this.form.submit();"
          is there any other way???