Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] xsl:apply-template and xsl:for-ech confusion

From: Anton Triest <anton@-------->
To:
Date: 10/1/2004 4:05:00 PM
Hi Luke,



You could do that, but you can't use <xsl:apply templates 
select="tblMIMCompanies"/>

because the for-each loop already puts you in the context of the 
tblMIMCompanies nodes.

I think it should work if you use <xsl:apply templates select="."/>



Or alternatively use apply-templates instead of for-each and use a mode:



<xsl:template match="tblMIM">
   <xsl:apply-templates select="tblMIMCompanies"/>
</xsl:template>

<xsl:template match="tblMIMCompanies">

   <xsl:if test="$searchby=0 and 
tblMIMSubSectors[@subsectorID=$subsector]">

       <xsl:apply-templates select="." mode="output"/>

   </xsl:if>

   <xsl:if test="$searchby=1 and tblMIMSubSectors[@sectorID=$sector]">

       <xsl:apply-templates select="." mode="output"/>

   </xsl:if>

</xsl:template>



<xsl:template match="tblMIMCompanies" mode="output">
   <xsl:value-of select="@name"/>
   ...
</xsl:template>

Cheers,
Anton


Luke Ambrogio wrote:



Hello guys,



thanks a lot for the great help you gave me with my previous problem,
hopefully this will be as simple to solve.
I have

<xsl:template match="tblMIM">
   <xsl:for-each select="tblMIMCompanies">
       <xsl:choose>
           <xsl:when test="$searchby=0">
               <xsl:if test="tblMIMSubSectors[@subsectorID=$subsector]">
                   <xsl:value-of select="@name"/>
                   ...
               </xsl:if>
           </xsl:when>
           <xsl:when test="$searchby=1">
               <xsl:if test="tblMIMSubSectors[@sectorID=$sector]">
                   <xsl:value-of select="@name"/>
                   ...
               </xsl:if>
           </xsl:when>
       </xsl:choose>
   </xsl:for-each>
</xsl:template>

i would like to change it to something like the code below, which doesn't
output anything. This way i don't need to repeat the inner most code since
its the same for each. any ideas?

<xsl:template match="tblMIM">
   <xsl:for-each select="tblMIMCompanies">
       <xsl:choose>
           <xsl:when test="$searchby=0">
               <xsl:if test="tblMIMSubSectors[@subsectorID=$subsector]">
                   <xsl:apply templates select="tblMIMCompanies"/>
               </xsl:if>
           </xsl:when>
           <xsl:when test="$searchby=1">
               <xsl:if test="tblMIMSubSectors[@sectorID=$sector]">
                   <xsl:apply templates select="tblMIMCompanies"/>
               </xsl:if>
           </xsl:when>
       </xsl:choose>
   </xsl:for-each>
</xsl:template>

<xsl:template match="tblMIMCompanies">
   <xsl:value-of select="@name"/>
   ...
</xsl:template>

the xml looks like this



<tblMIM>
   <tblMIMCompanies name="A Ltd" ...>
       <tblMIMSubSectors subsectorID="55" sectorID="3"/>
   </tblMIMCompanies>
   <tblMIMCompanies name="Z Ltd" ...>
       <tblMIMSubSectors subsectorID="56" sectorID="3"/>
   </tblMIMCompanies>
</tblMim>


regards
Luke Ambrogio

p.s. thanks in advance


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent