0 Replies Latest reply on Feb 3, 2009 1:36 PM by supernovasoftware.com

    rich:contextMenu with h:inputText inaccessible

      After upgrading to RF 3.3.0 I am having a problem with an h:inputText inside a rich:contextMenu.

      The contextMenu appears normally and I can click the button inside, but the h:inputText will not allow the user to click inside to type anything.

      This menu is attached to a button inside the header of rich:dataTable column.

      Can someone please suggest a solution?

       <f:facet name="header">
       <a4j:outputPanel ajaxRendered="true">
       <a4j:commandButton status="commonstatus0"
       id="update_button"
       rendered="#{currentUsr.currentRole.role=='Manager'}"
       image="images/buttons/update.gif"
       title="Update Offer Prices"
       action="#{listOfferPrice.update}"
       reRender="offerPrice_data" />
       <rich:contextMenu id="netTonAdjustment_contextMenu"
       event="oncontextmenu"
       attachTo="update_button"
       submitMode="none"
       rendered="#{currentUsr.currentRole.role=='Manager'}">
       <rich:menuItem id="zin">
       <a4j:commandButton status="commonstatus0"
       value="Adjust Dist($/nt)"
       action="#{listOfferPrice.addjustNtPrice}"
       reRender="offerPrice_data" />
       <h:inputText value="#{netTonAdjustment}" id="inputTextNetTonAdjustment" />
       </rich:menuItem>
       </rich:contextMenu>
       </a4j:outputPanel>
       </f:facet>