3 Replies Latest reply on Aug 11, 2009 9:59 PM by nicevision2020

    Seam Excel Style

    nicevision2020

      I am trying to setup row with style.  But i end up setting style for the all the column loop.


      Loop through the arraylist..




      "<e:worksheet name="#{worksheetname}" value="#{ser.excelRows}" var="d" startRow="15">
                      <e:column>
                              <e:cell value="#{d.cell1.cellValue}" style="#{d.cell1.styleString}"/>
                      </e:column>                                               
                      <e:column>
                              <e:cell value="#{d.cell2.cellValue}" style="#{d.cell2.styleString}" />
                      </e:column>
                      <e:column>
                              <e:cell value="#{d.cell3.cellValue}" style="#{d.cell3.styleString}" />
                      </e:column>
      </e:worksheet>"






      I am trying to achieve kind of header, data, subfooter, footer


      Thanks in advance.