7 Replies Latest reply on Jul 17, 2007 5:52 PM by sergeysmirnov

    TabPanel component conflicting with Seam SelectDate

      I am using a rich:tabPanel on the same page as a s:selectDate. The s:selectDate is opening behind the rich:tabPanel when the selectDate is clicked. I have tried setting the z indexes of the components via CSS to no avail.
      Here is what I got

      <h:panelGroup>
       <h:inputText id="processedDate" value="#{serviceRequest.dateProcessed}">
       <s:convertDateTime pattern="MM/dd/yyyy"/>
       </h:inputText>
       <s:selectDate for="processedDate" style="z-index: 2001">
       <img src="img/dtpick.gif"/>
       </s:selectDate>
      </h:panelGroup>
      
      ...
      
      <rich:tabPanel switchType="ajax" style="z-index: 1999">
      ....
      </rich:tabPanel>


      Is there anything I can do to make these components play nice together?