0 Replies Latest reply on Jul 14, 2007 11:27 AM by szaccaria

    selectDate not popping up on click in row of table

    szaccaria

      I try the cvs seam 2.0B and now selectDate non pop up when is in the row like:

      <rich:tab label="Righe">
       <rich:datascroller for="righeList" />
       <rich:spacer height="5" />
      
       <rich:dataTable
       id="righeList"
       rows="10"
       columnClasses="col"
       value="#{doc.righe}"
       var="riga">
      
       <rich:columnGroup styleClass="tableRow" >
      
       <rich:column styleClass="tableCell" rowspan="5">
       <h:outputText value="#{riga.codart}" />
       </rich:column>
       <rich:column styleClass="tableCell">
       <h:outputText value="#{riga.colore}" />
       </rich:column>
       <rich:column styleClass="tableCell">
       <h:outputText
       styleClass="headerText"
       value="#{messages.dtconsrigaext}" />
       <s:selectDate
       for="dataconsegna"
       dateFormat="dd MMMM yyyy"
       startYear="2006"
       endYear="2020">
       <h:inputText
       id="dataconsegna"
       required="false"
       rendered="#{riga.tipo=='A' and s:hasRole('fornitore')}"
       value="#{riga.dtconsext}">
       <s:convertDateTime pattern="dd MMMM yyyy" />
       <s:validate />
       </h:inputText>
       </s:selectDate>
       <div class="validationError"><h:message for="dataconsegna" />
       </div>
       <h:outputText
       value="#{riga.dtconsext}"
       rendered="#{riga.tipo=='A' and s:hasRole('commerciale')}">
       <s:convertDateTime pattern="dd MMMM yyyy" />
       </h:outputText>
       </rich:column>
      ...
      ...
      ...
      
      
      
      The selectDate work with i.e. 7 not with firefox!