|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: LOOP-LIMIT
Quoting William Rutford <vsd18@xxxxxxxxxxxxxx>:
>
> Hi
> I have a problem .. here it goes..
>
> xml structure:
>
> <root>
> <child id = '1'/>
> <child id = '2'/>
> <child id = '3'/>
> <child id = '4'/>
> <child id = '5'/>
> <child id = '6'/>
> </root>
>
> i have to run an <xsl:for-each> for the 'child' only till child id
> = '4'..
> i want to write the condition of the following type
> if(id > 4)
> {
> do something..
> }
> else
> {
> do something else
> }
>
> can some one suggest me a way tro do that??
Put something like
<xsl:choose>
<xsl:when test="@id > 4">
do something..
</xsl:when>
<xsl:otherwise>
do something else
</xsl:otherwise>
</xsl:choose>
in your loop. Will that do what you're looking for?
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! 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
|

Cart








