| Subject: [xsl] Changing table output from horizontal to vertical From: "Mark" <mark@xxxxxxxxxxxx> Date: Sun, 18 Sep 2011 09:50:58 -0700 | 
Hi, I am using an XSLT template to produce an XHTML table. Currently, the stylesheet fills the table in a horizontal direction; I would like to fill the table in a vertical direction. The data is in two languages, but my XHTML exposes only one language at a time. Because I currently have 27 <Item> elements in each language, each list of <Items> by language currently consists of three columns of nine <Items>. However, the number of <Items> could change. My current template, with its input and output, is shown below.
Also, it would be very helpful to put the English in one table and the Czech in another (move the 'lang' attribute from the <h4> to the <table>).
Suggestions on how to do this would be greatly appreciated. Thanks, Mark
My Template:
<xsl:template match="Item[(position()-1) mod 3 = 0]">
   <tr>
     <td>
       <xsl:element name="h4">
         <xsl:attribute name="lang" select="@lang"/>
         <xsl:element name="a">
           <xsl:attribute name="href" select="@file"/>
           <xsl:value-of select="@concept"/>
         </xsl:element>
       </xsl:element>
     </td>              <tr>
                 <td>
                    <h4 lang="cz">
                       <a href="other-themes.htm">DalE!C- tC)ma</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">                       <a href="pets.htm">DomC!ci zvC-Eata</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="for-children.htm">DDtem</a>
                    </h4>
                 </td>                 </td>
              </tr>
              <tr>
                 <td>
                    <h4 lang="cz">
                       <a href="royalty.htm">KrC!lovskC) rodiny</a>
                    </h4>
                 </td>                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="conservation.htm">Ochrana pEC-rody</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">                    <h4 lang="cz">
                       <a href="collecting.htm">SbDratelstvC-</a>
                    </h4>
                 </td>
              </tr>
              <tr>
                 <td>
                    <h4 lang="cz">                       <a href="personalities.htm">SlavnC- lidC)</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="sports.htm">SportovnC-</a>
                    </h4>
                 </td>                 <td>
                    <h4 lang="cz">
                       <a href="national-emblems.htm">StC!tnC- symboly</a>
                    </h4>
                 </td>
              </tr>
              <tr>
                 <td>                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="handicrafts.htm">UmDleckC! Eemesla</a>
                    </h4>
                 </td>
              </tr>
              <tr>                 <td>
                    <h4 lang="cz">
                       <a href="art-on-stamps.htm">UmDnC- na znC!mkC!ch</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="easter.htm">Velikonce</a>                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">
                       <a href="christmas.htm">VC!noce</a>
                    </h4>
                 </td>
              </tr>              <tr>
                 <td>
                    <h4 lang="cz">
                       <a href="definitive-issues.htm">VC=platnC- znC!mky</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="cz">              </tr>
              <tr>
                 <td>
                    <h4 lang="en">
                       <a href="art-on-stamps.htm">Art on Stamps</a>
                    </h4>
                 </td>
                 <td>                    <h4 lang="en">
                       <a href="christmas.htm">Christmas</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="en">
                       <a href="collecting.htm">Collecting</a>
                    </h4>                 </td>
              </tr>
              <tr>
                 <td>
                    <h4 lang="en">
                       <a href="conservation.htm">Conservation</a>
                    </h4>
                 </td>                    </h4>
                 </td>
              </tr>
              <tr>
                 <td>
                    <h4 lang="en">
                       <a href="easter.htm">Easter</a>
                    </h4>                 </td>
                 <td>
                    <h4 lang="en">
                       <a href="for-children.htm">For Children</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="en">                    <h4 lang="en">
                       <a href="humor.htm">Humor</a>
                    </h4>
                 </td>
              </tr>
              <tr>
                 <td>
                    <h4 lang="en">                    <h4 lang="en">
                       <a href="organizations.htm">Organizations</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="en">
                       <a href="other-themes.htm">Other Themes</a>
                    </h4>                 </td>
                 <td>
                    <h4 lang="en">
                       <a href="personalities.htm">Personalities</a>
                    </h4>
                 </td>
              </tr>
              <tr>                    </h4>
                 </td>
                 <td>
                    <h4 lang="en">
                       <a href="political-events.htm">Political Events</a>
                    </h4>
                 </td>
              </tr>              <tr>
                 <td>
                    <h4 lang="en">
                       <a href="railways.htm">Railways</a>
                    </h4>
                 </td>
                 <td>
                    <h4 lang="en">              </tr>
              <tr>
                 <td>
                    <h4 lang="en">
                       <a href="sports.htm">Sports</a>
                    </h4>
                 </td>
                 <td>| Current Thread | 
|---|
| 
 | 
| <- Previous | Index | Next -> | 
|---|---|---|
| [xsl] Test Cases for XSLT support i, Julian Reschke | Thread | Re: [xsl] Changing table output fro, Mark | 
| Re: [xsl] RE: Best way to represent, Michael Kay | Date | Re: [xsl] Changing table output fro, Mark | 
| Month |