xsl-list
[Top] [All Lists]

RE: [xsl] for-each-group not working

2008-11-24 07:47:15
No index is the part of common attribute value for 3-levels.
Primary/secondary/tertiary like index. Based on the this only I am checking.

Regards,
Ramkumar


-----Original Message-----
From: Andrew Welch [mailto:andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com] 
Sent: Monday, November 24, 2008 5:06 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] for-each-group not working

I am using saxon9 for xml transformation. In this, for-each-group not
working fine. So please anyone find my errors.

:)

My HTML (input),
<html>
<body>
<p class="indexmain"><em>Slogan main</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexmain"><em>Slogan main</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexsecond"><em>Slogan</em> 158</p>
<p class="indexmain"><em>Slogan main</em> 158</p>
</body>
</html>


<xsl:for-each-group select="*"
group-starting-with="p[contains(@class,'index')]">

You have:

group-starting-with="p[contains(@class,'index')]"

but that's true for all of them, so I think you meant:

group-starting-with="p[contains(@class,'indexmain')]"




-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

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


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