RE: Problems visualing tables

2004-05-25 Thread Andreas L. Delmelle
 -Original Message-
 From: Juan Manuel Bellina [mailto:[EMAIL PROTECTED]
 Sent: dinsdag 25 mei 2004 21:41

 I am using FOP 0.20.5 to make a report to a PDF file.
 I make a table with some data but when I open the pdf
 file generated,  the table are not showed.
 Any ideas?

Could mean a number of things, so, not immediately, no...
Is it possible to send us a stripped-down version of the source FO
demonstrating the problem?


Greetz,

Andreas


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Problems visualing tables

2004-05-25 Thread Juan Manuel Bellina
Andres:
   First of all,  thanks for your sooner response.
Let me tell that I found this mesage in the console
when i executed the redering.
/***
[WARNING] table-layout=auto is not supported,  using
fixed!
[WARNING] current implementation of tables requires a
table-column for each column,  indicating column-width
***/

What do you think the problem is?
I put a little peace of code,  as you ask.

/***
fo:table-row
fo:table-cell
fo:blockTITLE COL 1
/fo:block
/fo:table-cell
fo:table-cell
fo:blockfo:inline color=#00 language=en-US
font-size=12pt font-family=Times New Roman
font-weight=normal font-style=normal
text-decoration=noneTITLE /fo:inlineCOL 2
/fo:block
/fo:table-cell
fo:table-cell
fo:blockfo:inline color=#00 language=en-US
font-size=12pt font-family=Times New Roman
font-weight=normal font-style=normal
text-decoration=noneTITLE /fo:inlineCOL 3
/fo:block
/fo:table-cell
/fo:table-row
/

--- Andreas L. Delmelle [EMAIL PROTECTED]
wrote:
  -Original Message-
  From: Juan Manuel Bellina
 [mailto:[EMAIL PROTECTED]
  Sent: dinsdag 25 mei 2004 21:41
 
  I am using FOP 0.20.5 to make a report to a PDF
 file.
  I make a table with some data but when I open the
 pdf
  file generated,  the table are not showed.
  Any ideas?
 
 Could mean a number of things, so, not immediately,
 no...
 Is it possible to send us a stripped-down version of
 the source FO
 demonstrating the problem?
 
 
 Greetz,
 
 Andreas
 
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 





__
Do you Yahoo!?
Friends.  Fun.  Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/ 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problems visualing tables

2004-05-25 Thread Clay Leeds
It looks like you're missing fo:table-column and, perhaps 
fo:table-body. There's a FAQ about this:

http://xml.apache.org/fop/faq.html#table-missing
Make certain you've added fo:table-column. There's another FAQ 
immediately preceding the table-missing issue which has a complete 
example of a table:

http://xml.apache.org/fop/faq.html#keep-with
Good luck!
Web Maestro Clay
On May 25, 2004, at 1:24 PM, Juan Manuel Bellina wrote:
Andres:
   First of all,  thanks for your sooner response.
Let me tell that I found this mesage in the console
when i executed the redering.
/***
[WARNING] table-layout=auto is not supported,  using
fixed!
[WARNING] current implementation of tables requires a
table-column for each column,  indicating column-width
***/
What do you think the problem is?
I put a little peace of code,  as you ask.
/***
fo:table-row
fo:table-cell
fo:blockTITLE COL 1
/fo:block
/fo:table-cell
fo:table-cell
fo:blockfo:inline color=#00 language=en-US
font-size=12pt font-family=Times New Roman
font-weight=normal font-style=normal
text-decoration=noneTITLE /fo:inlineCOL 2
/fo:block
/fo:table-cell
fo:table-cell
fo:blockfo:inline color=#00 language=en-US
font-size=12pt font-family=Times New Roman
font-weight=normal font-style=normal
text-decoration=noneTITLE /fo:inlineCOL 3
/fo:block
/fo:table-cell
/fo:table-row
/
--- Andreas L. Delmelle [EMAIL PROTECTED]
wrote:
-Original Message-
From: Juan Manuel Bellina
[mailto:[EMAIL PROTECTED]
Sent: dinsdag 25 mei 2004 21:41
I am using FOP 0.20.5 to make a report to a PDF
file.
I make a table with some data but when I open the
pdf
file generated,  the table are not showed.
Any ideas?
Could mean a number of things, so, not immediately,
no...
Is it possible to send us a stripped-down version of
the source FO
demonstrating the problem?
Greetz,
Andreas

-
To unsubscribe, e-mail:
[EMAIL PROTECTED]
For additional commands, e-mail:
[EMAIL PROTECTED]



__
Do you Yahoo!?
Friends.  Fun.  Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Problems visualing tables

2004-05-25 Thread J.Pietschmann
Juan Manuel Bellina wrote:
/***
[WARNING] table-layout=auto is not supported,  using
fixed!
[WARNING] current implementation of tables requires a
table-column for each column,  indicating column-width
Read the warning carefully. FOP 0.20.5 requires you to
supply definitions for all table rows:
 fo:table table-layout=fixed
   fo:table-column column-width=5cm/
   ...
I put a little peace of code,  as you ask.
/***
fo:table-row
I can't tell from you code snippet, but you should check this
FAQ too:
 http://xml.apache.org/fop/faq.html#table-missing
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]