 |
 |
 |
> 1) I know that there is no need to check for
> string-length() when checking to see if an element is
> empty or not, but the following checks seem to be
> failing in my XSLT and I am not sure why.
You don't show your source XML, but if you are testing for empty elements
then your code is wrong.
<xsl:if test="JobTitle"> tests if a JobTitle element exists
<xsl:if test="JobTitle!=''"> tests if a non-empty JobTitle element exists
(where "empty" means that its string-value is an empty string)
>
> 2) How does one check to see what the parent of an
> element is? I am currently trying this, with no luck.
>
> <xsl:template
> match="Link[parent::node()='RelatedLinks']">
>
> I want only those links elements that have the parent
> element 'RelatedLinks,'
<xsl:template match="RelatedLinks/Link">
or if you prefer
<xsl:template match="Link[parent::RelatedLinks]">
You are testing the content of the parent element, not its name.
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
 | 



|  |
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.
|  |
| |
 |
 |
 |