This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Breaking up is hard to do.


I like this one. I saw Michael Kay's reply before
this, but seems like these two are on the same "wavelength".

| <xsl:template match="data">
|   <table>
|     <xsl:for-each select="field[position() mod $max = 1]" >
|       <tr>
|          <xsl:for-each select="self::field |
|                       following-sibling::field[position() < $max]>
|             <td><xsl:apply-templates/></td>
|          </xsl:for-each>
|       </tr>
|     </xsl:for-each>
|   </table>
| </xsl:template>

_________________________________________________________
Steve Muench, Consulting Product Manager & XML Evangelist
Business Components for Java Development Team




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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]