xsl-list
[Top] [All Lists]

Re: xsl:apply-template and xsl:for-ech confusion again

2004-10-01 06:35:57
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Luke,

could you tell us for which values of the variables $searchby, $sector
and $subsector the error occurs?

Regards,
Wolfgang

Luke Ambrogio wrote:

| To riterate
|
| I have
|
| <xsl:template match="tblMIM">
|     <xsl:choose>
|         <xsl:when test="$searchby=0">
|             <xsl:for-each
| select="tblMIMCompanies/tblMIMSubSectors[(_at_)subsectorID=$subsector]">
|                 <xsl:apply-templates select="tblMIMCompanies"/>
|             </xsl:for-each>
|         </xsl:when>
|         <xsl:otherwise>
|             <xsl:for-each
| select="tblMIMCompanies/tblMIMSubSectors[(_at_)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
|
|
| --+------------------------------------------------------------------
| XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
| To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
| or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
| --+--
|
|

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Cygwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFBXV09qjaicDyx8o8RAmnzAJoC5Xp0sIQ/ec+qCr4Tf1Se3YutpwCfUjqG
NO83/CIYd1nawNCPiAz6lio=
=eqz1
-----END PGP SIGNATURE-----


<Prev in Thread] Current Thread [Next in Thread>
  • Re: xsl:apply-template and xsl:for-ech confusion again, Werner, Wolfgang <=