This content has been marked as final. 
    
Show                 6 replies
    
- 
        1. Re: Excel multiple iterationnickarls Aug 12, 2009 10:28 AM (in response to jspring)Hmm, some sort of 1 1.1 1.2 1.3 2 2.1 2.2 2.3 3 3.1... ? 
- 
        2. Re: Excel multiple iterationjspring Aug 12, 2009 4:19 PM (in response to jspring)Yes exactly.
 List rollups (var = "rollup")
 -> List rollup.rollupData (var = "data")
 -> data.name
 -> data.date
 etc.
- 
        3. Re: Excel multiple iterationnickarls Aug 13, 2009 7:37 AM (in response to jspring)Hmm, it was mostly designed for outputting blocks of data but you could try using nested ui:repeat tags and control the row and column attribute values of the cells. If it breaks, you can keep the pieces ;-) 
- 
        4. Re: Excel multiple iterationjspring Aug 14, 2009 9:06 PM (in response to jspring)Thanks! I was able to change the model to include all items in a single list but will keep the ui:repeat in mind next time. 
- 
        5. Re: Excel multiple iterationchoilee Dec 24, 2009 5:13 PM (in response to jspring)i m facing this problem..i wan display something like this, but the value need to be separated in individual cell. ui:repeat only work inside e:cell tag. 1 1.1 1.2 1.3 2 2.1 2.2 2.3 3 3.1... the code below works in datatable, but how can i display in excel? <h:dataTable id="theDataTable" border="1" value="#{TypeList}" var="key" > <h:column> <f:facet name="header"> <h:outputText value="#{key}"/> </f:facet> <h:dataTable value="#{inventoryMonthList}" var="list" > <h:column> <h:dataTable value="#{list[key]}" var="item"> <h:column> <h:outputText value="#{item.partNo}"/> </h:column> </h:dataTable> </h:column> </h:dataTable> </h:column> </h:dataTable>
- 
        6. Re: Excel multiple iterationrodriguezrps Jan 29, 2010 1:51 PM (in response to jspring)i have the same problem any suggestion? 
 
     
     
    