Ответ
egr 26.09.2004 08:24
<xsl:variable name="no_of_columns">3</xsl:variable>
<xsl:template name="...">
<table>
<xsl:for-each select="item[position() mod $no_of_columns = 1]">
<tr>
<xsl:apply-templates select=".|following-sibling::item[position() < $no_of_columns]"/>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<xsl:template match="item">
<td>
...
</td>
</xsl:template>
- Вывод в несколько столбцов посредством xsl трансформирования., G_Z [M] 26.09.2004 02:42 / 26.09.2004 03:00
- Ответ, egr 26.09.2004 08:24
- На мой вгляд более ресурсоёмко, G_Z [M] 26.09.2004 11:36
- прикольно :), egr 26.09.2004 11:43
- Ответ, G_Z [M] 26.09.2004 14:25
- Ответ, egr 26.09.2004 14:45
- Ответ, G_Z [M] 26.09.2004 15:00
- Ответ, egr 26.09.2004 15:08 / 26.09.2004 15:59
- Ответ, G_Z [M] 26.09.2004 16:37 / 26.09.2004 16:41
- Ответ, egr 26.09.2004 16:38 / 26.09.2004 16:39
- Тяжко идёт..., G_Z [M] 26.09.2004 16:47
- Ответ, egr 26.09.2004 16:50
- Ответ, G_Z [M] 26.09.2004 16:54
- Ответ, egr 26.09.2004 16:57
- Ответ, G_Z [M] 26.09.2004 17:05 / 26.09.2004 17:07
- Ответ, egr 26.09.2004 17:08
- Да, теперь верно..., G_Z [M] 26.09.2004 17:14 / 26.09.2004 17:24
- Ответ, egr 26.09.2004 17:30
- Ответ, G_Z [M] 26.09.2004 17:59 / 26.09.2004 18:00
- Ответ, egr 26.09.2004 18:05
- Ответ, G_Z [M] 26.09.2004 18:12
- Ответ, egr 26.09.2004 18:14