Bonjour à tout le monde,

j'ai un problème pour afficher une FO-TABLE.

Elle s'affiche mais sans aucun formatage ! seules les données "brutes" sont affichées !

Voici le source :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
 
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:fo="http://www.w3.org/1999/XSL/format" xmlns:cal="xalan//java.util.GregorianCalendar"
	version="2.0">
	<xsl:output method="html" indent="yes" />
...
 
	<xsl:template match="Lignes">
		<fo:layout-master-set>
			<fo:simple-page-master margin-right="20mm"
				margin-left="20mm" margin-bottom="20mm" margin-top="20mm"
				page-width="200mm" page-height="300mm" master-name="mainPage">
				<fo:region-body margin-right="0mm" margin-left="0mm"
					margin-bottom="10mm" margin-top="0mm" />
				<fo:region-after extent="20mm" />
			</fo:simple-page-master>
		</fo:layout-master-set>
 
		<fo:page-sequence master-reference="mainPage">
			<fo:flow flow-name="xsl-region-body">
				<fo:block font-size="28pt" line-height="36pt"
					padding-after="12pt">
					Creating XSL-FO Tables
				</fo:block>
				<fo:table width="16cm" table-layout="fixed">
					<fo:table-column column-number="1" column-width="30mm">
					</fo:table-column>
					<fo:table-column column-number="2" column-width="30mm">
					</fo:table-column>
					<fo:table-column column-number="3" column-width="30mm">
					</fo:table-column>
					<fo:table-body>
						<fo:table-row line-height="26pt">
							<fo:table-cell column-number="1" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt"
									font-weight="bold">
									State
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="2" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt"
									font-weight="bold">
									Flower
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="3" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt"
									font-weight="bold">
									Bird
								</fo:block>
							</fo:table-cell>
						</fo:table-row>
						<fo:table-row line-height="26pt">
							<fo:table-cell column-number="1" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									California
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="2" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Quail
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="3" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Golden
									Poppy
								</fo:block>
							</fo:table-cell>
						</fo:table-row>
						<fo:table-row line-height="26pt">
							<fo:table-cell column-number="1" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Massachusetts
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="2" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Chickadee
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="3" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Mayflower
								</fo:block>
							</fo:table-cell>
						</fo:table-row>
						<fo:table-row line-height="26pt">
							<fo:table-cell column-number="1" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									New York
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="2" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Bluebird
								</fo:block>
							</fo:table-cell>
							<fo:table-cell column-number="3" border-style="solid">
								<fo:block font-family="sans-serif" font-size="20pt">
									Rose
								</fo:block>
							</fo:table-cell>
						</fo:table-row>
					</fo:table-body>
				</fo:table>
			</fo:flow>
		</fo:page-sequence>
	</xsl:template>
 
</xsl:stylesheet>
Une idée ?

Merci par avance

Fabrice