3 Replies Latest reply on Dec 9, 2008 6:48 AM by ilya_shaikovsky

    comboBox - suggestions not working in modal panel

    jiri.pejchal

      Suggestions for comboBox are not working in modal panel (richfaces 3.2.2, firefox 3, IE7). Is it a bug?

      <f:view xmlns="http://www.w3.org/1999/xhtml"
       xmlns:ui="http://java.sun.com/jsf/facelets"
       xmlns:a4j="http://richfaces.org/a4j"
       xmlns:f="http://java.sun.com/jsf/core"
       xmlns:h="http://java.sun.com/jsf/html"
       xmlns:jsp="http://java.sun.com/JSP/Page"
       xmlns:rich="http://richfaces.org/rich">
      
      
       <html>
       <head>
       </head>
       <body>
       <rich:panel id="panelContent" style="height: 696px">
       <h:outputLink value="#" id="link">
       Show Modal Panel
       <rich:componentControl for="editDialog" attachTo="link" operation="show" event="onclick"/>
       </h:outputLink>
       </rich:panel>
      
       <a4j:region id="editRegion">
       <rich:modalPanel id="editDialog"
       height="310" minHeight="310"
       width="230" minWidth="230"
       resizeable="true" zindex="2000">
       <a4j:form id="aircraftEditForm">
       <rich:comboBox defaultLabel="Enter some value">
       <f:selectItem itemValue="suggestion 1"/>
       <f:selectItem itemValue="suggestion 2"/>
       </rich:comboBox>
       </a4j:form>
       </rich:modalPanel>
       </a4j:region>
       </body>
       </html>
      </f:view>