Hi,
I have a XML with a list of orders and I want to create a page for each order.
Since a details table iterates over each order I figured I just place the whole page layout in the of the table.
This does work as long as everything fits on 1 page otherwise the designer shows the page in red and extra empty pages are created. And I am unable to index in each of my javascript functions to point to the correct order. For some reason it always picks the first order. So essentially it duplicates everything on the page for all orders.
So in my design I have something like:
<table id="FullPageTbl" class="tableStyle" data-column-resize="" data-hide-when-empty="" data-detail="ORDER" style="width: 100%;" title="ORDER">
<tbody>
<tr class="tableDataRow breakoneachrec" data-breakable="1" data-repeat="">
<td class="tableDataCol" style="width: 100%;">
And here I have all my page data
</td>
</tr>
</tbody>
</table>
Is there a way to acomplish what I want?