|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: conditional display of content
2008/5/27 Ganesh Babu N <nbabuganesh@xxxxxxxxx>: > This is the XML file: horrible sample XML fragment by the way... what's wrong with indenting it? > My requirement is to display the corresponding the role/personname in > the speaker tag. The condition is id and href should match. > > <xsl:template match="pbl:roleref> > <xsl:if test="substring-after(@href),#) = > //pbl:castmember/pbl:role/@xml:id"> > <xsl:value-of select="//pbl:castmember/pbl:role/personname"/> > </xsl:if> > </xsl:template> Your xpath needs to at least be //pbl:castmember/pbl:role[$id = @xml:id]/personname where $id is a variable defined before the select as: substring-after(@href), '#') (notice the single quotes around the hash... or "pound" sign if you speak American) or just use substring-after(current()/@href), '#') directly in the XPath. Ultimately though this should be rewritten to use a key: <xsl:key name="role-by-id" match="pbl:role" use="@xml:id"/> and then just <xsl:template match="pbl:roleref> <xsl:value-of select="key('role-by-id', substring-after(@href, '#'))"/> If the lookup value doesn't exist in the key then nothing is returned. -- Andrew Welch http://andrewjwelch.com Kernow: http://kernowforsaxon.sf.net/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. 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
|







