1 Reply Latest reply on Aug 29, 2008 9:35 AM by nickarls

    seam-excel: how to use JSF converters for cell values?

    vladimir.kovalyuk

      I have the following excerpt in a page:


      <s:div styleClass="vertical">
           <h:outputText value="#{interval.start.toDate()}">
                <s:convertDateTime type="date" dateStyle="short" />
           </h:outputText>
           <h:outputText value="-" />
           <h:outputText value="#{interval.end.minusDays(1).toDate()}">
                <s:convertDateTime type="date" dateStyle="short" />
           </h:outputText>
      </s:div>
      



      How to achieve the same result in seam-excel for a cell value?