|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] xsl:apply-template and xsl:for-ech confusion again
To riterate
I have
<xsl:template match="tblMIM">
<xsl:choose>
<xsl:when test="$searchby=0">
<xsl:for-each
select="tblMIMCompanies/tblMIMSubSectors[@subsectorID=$subsector]">
<xsl:apply-templates select="tblMIMCompanies"/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each
select="tblMIMCompanies/tblMIMSubSectors[@sectorID=$sector]">
<xsl:apply-templates select="tblMIMCompanies"/>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tblMIMCompanies">
<table width="100%">
<tr>
<td width="100">Name:</td>
<td><xsl:value-of select="@name"/></td>
</tr>
<tr>
<td width="100">Building:</td>
<td><xsl:value-of select="@building"/></td>
</tr>
</table>
</xsl:template>
the xml looks like
<tblMIM>
<tblMIMCompanies name="A Ltd" building="A House">
<tblMIMSubSectors subsectorID="55" sectorID="3"/>
</tblMIMCompanies>
<tblMIMCompanies name="B Ltd" building="B House">
<tblMIMSubSectors subsectorID="25" sectorID="4"/>
</tblMIMCompanies>
</tblMIM>
but i have no output. any ideas?
regards
Luke
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








