[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: xsl:for-each question

Subject: Re: xsl:for-each question
From: Michael Olszynski <m.olszynski@xxxxxxxxxxxxx>
Date: Thu, 30 Oct 2003 15:30:52 +0100
olszynski
Thats a good idea, but the output has to look like this html:


<table width="100%" border="1"> <tr> <td>point1</td> <td>s-point1</td> <td>s-s-point1</td> <td>s-s-s-point1</td> </tr> <tr> <td>&nbsp;</td> <td>s-point-2</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>s-poin-3</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>s-point-4</td> <td>s-s-point1</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>s-s-point2</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>s-s-point3</td> <td>s-s-s-point1</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>s-s-s-point2</td> </tr> <tr> <td>point2</td> <td>s-point1</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>s-point2</td> <td>s-s-spoint1</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>s-s-point2</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>s-point3</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>s-point4</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table>



So I don´t know how to iterate this. Can you give me a hint on that? Thanks a lot. I appreciate your help!

Michael

Emmanuil Batsis (Manos) wrote:



Michael Olszynski wrote:

Thank you very much, you´re right. I´m yet not really in the thinking of templates. I still try to "program" my xslt like I´m used to do it with Java-Programs.



How about using a list instead of a table and let (X)HTML do the formatting for you like:


    * point1
          o subpoint1.1
                + subsubpoint1.1.1
                      # subsubpoint1.1.1.1
          o subpoint1.2
    * point2
    * point3
    * point4


test.xml: =============================== <?xml-stylesheet href="test.xsl" type="text/xsl"?> <root> <topic name="point1"> <topic name="subpoint1.1"> <topic name="subsubpoint1.1.1"> <topic name="subsubpoint1.1.1.1"> </topic> </topic> </topic> <topic name="subpoint1.2"> </topic> </topic> <topic name="point2"> </topic> <topic name="point3"> </topic> <topic name="point4"> </topic> </root>


test.xsl:
===============================
<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">


  <xsl:template match="/">
  <html><head></head><body>
      <ul>
      <xsl:apply-templates/>
      </ul>
    </body></html>
  </xsl:template>


<xsl:template match="topic"> <li> <xsl:value-of select="@name"/> <xsl:if test="topic"> <ul> <xsl:apply-templates/> </ul> </xsl:if> </li> </xsl:template>

  <xsl:template match="@*|text()"/>
</xsl:transform>




-- Michael Olszynski Dipl.-Ing.(FH) Software Engineer

___ |X__________________________________________________________
  X|

eXXcellent solutions gmbh
In der Wanne 55

D-89075 ulm

e | m.olszynski@xxxxxxxxxxxxx
t | +49 [0]731-55026-39
f | +49 [0]731-55026-99
i | www.exxcellent.de
________________________________________________________________

Geschäftsführer: Dr. Martina Maier, Wilhelm Zorn, Gerhard Gruber
Sitz der Gesellschaft: Ulm, Registergericht: Ulm HRB 4309





XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.