Hi,
I've the below XML Document
HTML Code:
<table>
<tgroup cols="10" align="left" colsep="1" rowsep="1">
<colspec colwidth="100pt" colname="c1"/>
<colspec colwidth="100pt" colname="c2"/>
<colspec colwidth="100pt" colname="c3"/>
<colspec colwidth="100pt" colname="c4"/>
<colspec colwidth="100pt" colname="c5"/>
<colspec colwidth="100pt" colname="c6"/>
<colspec colwidth="100pt" colname="c7"/>
<colspec colwidth="100pt" colname="c8"/>
<colspec colwidth="100pt" colname="c9"/>
<colspec colwidth="100pt" colname="c10"/>
<tbody><row>
<entry morerows="1"><para>No. of application</para></entry>
<entry morerows="1"><para>Date application lodged</para></entry>
<entry morerows="1"><para>Nature of application</para></entry>
<entry namest="c4" nameend="c5"><para>Names and address of parties and of their respective Counsel of Solicitors</para></entry>
<entry morerows="1"><para>Date application served</para></entry>
<entry morerows="1"><para>Date answer received</para></entry>
<entry namest="c8" nameend="c9"><para>Hearing</para></entry>
<entry morerows="1"><para>Remarks</para></entry>
</row>
<row>
<entry><para>Applicant</para></entry>
<entry><para>Respondent</para></entry>
<entry><para>Date</para></entry>
<entry><para>Order made</para></entry>
</row>
<row>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
<entry><para> </para></entry>
</row>
</tbody></tgroup></table>
Here i need to create a cals table to show the output as in the below web link(here the text needn't be vertically displayed). Yesterday i got some, now in my current question, there are some attributes like colest and colend, i'm unable to understand how to code them or what is their use. please let me know how i can solve this.
Output
Thanks