This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: xls-force-type null values then java.lang.Floatmthai Apr 14, 2010 4:01 PM (in response to mthai)I would like to add a comment: 
 I have this bug when my column in excel export contains null values at the beginning.
- 
        2. Re: xls-force-type null values then java.lang.Floatmthai Apr 19, 2010 3:45 PM (in response to mthai)Hi, I would like to inform that i fixed this problem, i have update seam to 2.2.0.GA and move my style position. Before: <rich:dataTable id="idTable" value="#{myBean}" var="item"> <rich:column style="xls-force-type:number;"> <f:facet name="header"> <h:outputText styleClass="headerText" value="Price" /> </f:facet> <h:outputText value="#{item.price}" /> </rich:column> </rich:dataTable>Now: <rich:dataTable id="idTable" value="#{myBean}" var="item"> <rich:column> <f:facet name="header"> <h:outputText styleClass="headerText" value="Price" /> </f:facet> <h:outputText style="xls-force-type:number;" value="#{item.price}" /> </rich:column> </rich:dataTable>
