I am generating html using XSL at the runtime. My task is to print signature section after all the data is printed. I am printing data like this:
Customer 1 data
Customer 2 data
Customer 3 data
Customer 4 data
Customer 5 data
Customer 2’s Signature
Each customer data has id, name, address, etc., upto 5 details per customer.
At the end of all customer data I need to print Customer 2’s signature section.
Right now the customer data is running till 3 pages, and owner section is printing in the first page only. But i need Customer 2 at the end of the 3 pages.
Take a look at the sample XML..
<t>
<customer/>
<customer/>
<customer/>
<customer/>
<customer/>
</t>
I need an output like this
Customer 1 data
Customer 2 data
Customer 3 data
Customer 4 data
Customer 5 data
Customer 2' Signature.
This transformation:
when applied on the following XML document (because the fake XML provided by the lazy OP is useless):
produces what we guess could be the wanted result: