Re: [xsl] Display more than one table in generic xslt - reg

Subject: Re: [xsl] Display more than one table in generic xslt - reg
From: Ramesh Kumar <cnrameshkumar@xxxxxxxxx>
Date: Wed, 24 Mar 2010 15:42:58 +0400
The required HTML output is like....

<HTML><BODY>
<Table>
<TR><TD>
<Table border="1">
<tr><td>SysID</td><td>WFDocID</td></tr>
<tr><td>-2008080800041</td><td>0</td></tr>
</Table>
</TD></TR>
<TR><TD>&nbsp;</TD></TR>
<TR><TD>
<Table border="1">
<tr><td>SysID</td><td>ParentSysID</td></tr>
<tr><td>-2008080800045</td><td>-2008080800041</td></tr>
<tr><td>-2008080800046</td><td>-2008080800041</td></tr>
</Table>
</TD></TR>
</Table>
</Body>
</HTML>

Regards,
Ramesh

On Wed, Mar 24, 2010 at 3:08 PM, Martin Honnen <Martin.Honnen@xxxxxx> wrote:
> Ramesh Kumar wrote:
>
>> I need html output.
>
> For the XML data you have posted below, please show us the exact HTML you
> want to create with XSLT.
>
>>>> My XML data is
>>>> <?xml version="1.0" standalone="yes"?>
>>>> <Sales>
>>>>  <DocHead>
>>>>   <SysID>-2008080800041</SysID>
>>>>   <WFDocID>0</WFDocID>
>>>> </DocHead>
>>>> <Line>
>>>>   <SysID>-2008080800045</SysID>
>>>>   <ParentSysID>-2008080800041</ParentSysID>
>>>>   <DocType>51</DocType>
>>>> </Line>
>>>>
>>>> <Line>
>>>>   <SysID>-2008080800046</SysID>
>>>>   <ParentSysID>-2008080800041</ParentSysID>
>>>>   <DocType>51</DocType>
>>>> </Line>
>>>> </Sales>
>
>
>
> --
>
>        Martin Honnen
>        http://msmvps.com/blogs/martin_honnen/
>
>



--


Regards,
Ramesh

Current Thread