Hi,
I have a strange problem with nested PdfPTables: Both tables may span
over multiple pages. If the content of the inner table scratches on the
page boundary, it gets written there, but it also is written on the next
page. This does not happen if there is like half a line space left on
the p
Hi,
I have a strange problem with nested PdfPTables: Both tables may span
over multiple pages. If the content of the inner table scratches on the
page boundary, it gets written there, but it also is written on the next
page. This does not happen if there is like half a line space left on
the page.
setSplitLate(false); worked a treat.
Thanks a lot,
Mike.
Bruno Lowagie (iText) wrote:
>
> mikew01 wrote:
>> Hi,
>>
>> I have used iText to generate a report which uses nested tables which
>> works
>> fine but has left me with a niggling problem.
>>
>> When I nest a table within a PdfPCell an
mikew01 wrote:
Hi,
I have used iText to generate a report which uses nested tables which works
fine but has left me with a niggling problem.
When I nest a table within a PdfPCell and the nested table is too large to
fit on the remainder of the page, iText starts a new page for the nested
table,
Hi,
I have used iText to generate a report which uses nested tables which works
fine but has left me with a niggling problem.
When I nest a table within a PdfPCell and the nested table is too large to
fit on the remainder of the page, iText starts a new page for the nested
table, however if the
Hi
I am trying to create a PDF using nested tables and I am having problems
with setting the table/cell attributes of the inner tables - they don't seem
to respond to any setBorder methods.
Table table1 = new Table(3);
table1.
BorO :: Qnab System AB wrote:
> As I can see I can't add a table to cell with no borders and then add it
> to a table.
As already explained by others: it's sufficient to apply
setBorder(Rectangle.NO_BORDER); on the appropriate places.
br,
Bruno
---
Hello!
I wonder if someone can help me with my little problem.
In the example for nasted tables it stands
table.addCell(nested1);
Instead of cell you add a table. That works for me but for some reason I get a
border around it. I shouldn't be there.
Is there a way to not have a border or does i
t; <[EMAIL PROTECTED]>
Reply-To: Post all your questions about iText here
To: "Post all your questions about iText here"
Subject: Re: [iText-questions] nested tables with xml.
Date: Wed, 15 Nov 2006 17:31:38 -
Have a look at HTMLWorker, it may be enough for what you want
o: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] nested tables with xml.
>
> Hi there,
>
> I have not got any response on xml to pdf. Guess this topic
> is not very
> attractive.Anyway wouldl like to risk and pose another question.
>
> Ok. I have seen some exa
Hi there,
I have not got any response on xml to pdf. Guess this topic is not very
attractive.Anyway wouldl like to risk and pose another question.
Ok. I have seen some examples on creating on new class inheriting the
iTextmyHandler. i want to construct a pdfptables within this class overriden
Gaet wrote:
Sorry but this doesn't answer to my question
I want to split a cell like this :
---
|top of my parent cell |
---
| left bottom | right bottom |
-
ottom |
---
Thanks anyway for your help
- Original Message -
From:
Bruno Lowagie
To: Gaëtan Lepargneul
Cc: itext-questions@lists.sourceforge.net
Sent: Friday, February 10, 2006 2:18
PM
Subject: Re: [iText-questions] Nested
tables
G
Gaëtan Lepargneul wrote:
Hi,
Nested tables seems to be only for "Table" objects, not for "PdfPTable"
how to do nested PdfPTable, is it possible?
See the example under the title 'Nested Tables' in the tutorial:
http://itextdocs.lowagie.com/tutorial/objects/tables/
br,
Bruno
Hi,
Nested tables seems to be only for "Table" objects, not for
"PdfPTable"
how to do nested PdfPTable, is it possible?
Thanks
I am using nested tables. I have a border around the outer table and a border
around the inner table because the inner table is often smaller than the outer
table and I need to see the demarkation.
The problem is after I nest a couple of tables, each with their own borders,
you can see both bo
When i nest a Table in a Table, it seems to screw up the colspans (as in,
ignores them). Do I need to use a PdfPTable instead?
---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell
Title: RE: [iText-questions] Nested tables
You can't mix Table and
PdfPTable. The idea is to only use PdfPTable.
Best Regards,
Paulo Soares
From:
[EMAIL PROTECTED] on behalf of
[EMAIL PROTECTED]Sent: Tue 28-Sep-04 11:58To:
[EMAIL PROTECTED]Subject: RE: [iText-questions]
N
>And the answer is Use a PdfPTable.
I tried following code instead. But now I get an empty document. What I
am doing wrong?
Document doc = new Document();
PdfWriter.getInstance(doc, new FileOutputStream("test.pdf"));
doc.open();
Table table = new Table(1);
And the answer is Use a PdfPTable.
Best Regards,
Paulo Soares
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of [EMAIL PROTECTED]
> Sent: Tuesday, September 28, 2004 8:04 AM
> To: [EMAIL PROTECTED]
> Subject: [iText-que
I am trying to put two nested tables in a table with one column and two
rows. The nested tables have two columns but with different widths. But
they both get the same width ratio after being inserted in the parent table.
Neither insertTable(nestedTable) nor addCell(new Cell(nestedTable)) works.
Any
Title: Re: [iText-questions] Nested tables always flattened out?
PdfPCell.addElement()
From:
[EMAIL PROTECTED] on behalf of Tom
HjellmingSent: Tue 14-Sep-04 18:57To:
[EMAIL PROTECTED]Subject: Re: [iText-questions]
Nested tables always flattened out?
Hi Paulo,I see the following
-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Tom Hjellming
Sent: Tuesday, September 14, 2004 4:53 PM
To: [EMAIL PROTECTED]
Subject: Re: [iText-questions] Nested tables always flattened out?
Thanks Paulo.
Looking at PdfPTable/PdfPCell, it looks like only these
objects can be
4, 2004 4:53 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [iText-questions] Nested tables always flattened out?
>
> Thanks Paulo.
>
> Looking at PdfPTable/PdfPCell, it looks like only these
> objects can be placed inside a PdfPCell: Image, PdfPCell
> (deep copied), PdfPT
the solution is to have PdfPTable also work in html and rtf.
Best Regards,
Paulo Soares
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Tom Hjellming
Sent: Tuesday, September 14, 2004 12:36 AM
Cc: [EMAIL PROTECTED]
Subject: [iText-questions] Nested tables
> Subject: [iText-questions] Nested tables always flattened out?
>
> Hi,
>
> I'm trying to generate PDFs that are layed out with nested
> tables to get proper layout (similar to how you would use
> HTML tables).
>
> As an example, the outer-most table has a sin
Hi,
I'm trying to generate PDFs that are layed out with nested tables to get proper layout
(similar to how you would use HTML tables).
As an example, the outer-most table has a single row with two columns (left and right). The left column has an image and another table. The right column has some
Hmm, ok, that worked. Now the inner table is borderless, but it killed
the line below the inner table on the outer table...
There is another inner table in the cell below this one - does that
make a difference?
What can I do about that line?
On Jun 16, 2004, at 2:57 AM, Bruno wrote:
Quoting Jo
Quoting Jonathan August <[EMAIL PROTECTED]>:
>
> Hi,
>
> I'm trying to nest a table in a bigger table so I can layout some text
> inside one of the cells. I don't want the inner table to have any
> borders though. However, when I use setBorderWidth(0) or set the color
> of the border to whi
Hi,
I'm trying to nest a table in a bigger table so I can layout some text inside one of the cells. I don't want the inner table to have any borders though. However, when I use setBorderWidth(0) or set the color of the border to white, nothing happens. When I try setting the border width to 10
Use a PdfPTable.
Best Regards,
Paulo Soares
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Murph
> Sent: Thursday, June 10, 2004 8:21 PM
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] Nested Tables And setCel
Hi All,
I have a report that I need to generate a PDF for that looks something like this
Label: Value 1 Another Label: Value 1
Yet Another Label: Value 1Last Label: Value 1
Label: Value 2 Another Label: Value 2
Yet Another Label: Value 2Last Labe
Hello!
I have a problem with nested tables.
I have an external table with 1 column containing one table(A) on the
first row and another table(B) on the second row.
The method "setTableFitsPage(true)" called on the external table does not
work... the table is splitted on two pages...while I need to
Hi I have tried to add nested tables to a Document object but keep getting a
error (stack trace)
Error: null
com.lowagie.text.DocumentException
com.lowagie.text.DocumentException
at com.lowagie.text.pdf.PdfDocument.add(Unknown Source)
at com.lowagie.text.Document.add(Unknown Source)
This only hap
Hi all.
Is it possible to nest tables using the XML to PDF feature? If yes, can
anyone show me an example. I would greatly appreciate it.
Thank you
Isaac
---
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comp
Hi
I tried out the two example programs in the Nested Tables section. The
first one gives this output :
Chapter 5 example 14: nested tables
Error: 4
4
com.lowagie.text.DocumentException: 4
at com.lowagie.text.pdf.PdfDocument.add(PdfDocument.java:1814)
at com.lowagie.text.Document.add(Document.
Hi, i'm trying to deal with nested tables, and a tested this
simple example, in wich i create a table with one cell and
another table with one cell in that cell. The code is the
following:
//create a main table, with one column
Table mainTable = new Table(1);
//create a table, that is a nes
What is the best approach for nesting tables that span multiple cells?
The Table class seems to have a limitation on adding a Table to a cell that has a colspan of more than 1.
Thanks,KhaledDo you Yahoo!?
U2 on LAUNCH - Exclusive medley & videos from Greatest Hits CD
While implementing nested table support for my application, I found that iText does
not always merge tables and therefore throws a ClassCastException. In HTML, the table
code is this:
italic
Bold
I'm trying to insert table B into table A. If B is defined to have a single
column then I get a DocumentException
Error: null
com.lowagie.text.DocumentException
java.lang.Throwable(java.lang.String)
java.lang.Exception(java.lang.String)
com.lowagie.text.DocumentException(java.lang.String)
boo
Quoting Erwin Achermann <[EMAIL PROTECTED]>:
> I don't know when a new release will be available, and I don't know whether
> my patch will be part of it or not.
Hi,
I have added your most recent code to CVS, along with
some other code. I also have to update some XML functionality
(I want to get
Erwin Achermann wrote:
> I rewrote parts of Table.java recently to support tables in colspanned
> cells. I think this patch is available via CVS. This feature works for
> me currently, but there are still some known problems. e.g. you cannot
> insert cells in arbitrary order, you have to add c
;t know whether my
patch will be part of it or not.
Cheers
Erwin
-Original Message-From: Gerald Fehringer
[mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 03, 2002 11:03
AMTo: [EMAIL PROTECTED]Subject:
[iText-questions] nested tables - colspan
Hello!
I'm trying to nes
Hello!
I'm trying to nest tables making use of colspan ..
I've searched the mailing list archive and found the following
thread:
http://www.mail-archive.com/itext-questions@lists.sourceforge.net/msg00694.html
Does anyone know of a possibility to make this
working? Any known workaround?
You can control each cell border with TOP, BOTTOM, etc.
Best Regards,
Paulo Soares
- Original Message -
From: "Susana Pereira" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 15:05
Subject: [iText-questions] Nested tables
> Hi, i start
Hi, i started using iText a few days ago and unfortunately Im still having
some troubles using tables.
I need to create a Pdf page with several different tables within a 'big'
table. I did it using nested tables. The problem is that each table must
have an outside border but not an inside bor
Title: Message
I just
noticed that using PdfPTable I get not only a correct behavior for my last message, and I can also drop "insertTable" and use
addCell in a consistent way (what was making me
use reflection to discover which kind of object I was putting on the
table).
However...
Title: Message
I am having
different problems with nested tables.
QUESTION 1:
I think that
Example 13 of chapter five has a wrong result.
Check Chap0513.pdf
and you will see that cell 0,3 is divided in two, while the table was only
inserted in cell 1,3.
QUESTION 2:
Also, example
Original Message-
> From: Sergio Lopez Rodriguez [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, February 26, 2002 11:22
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] Nested tables and inner borders
>
> 1. I need a document with a table in a determined position so I
1. I need a document with a table in a determined position so I have to use
PdfPTable, isn't it?
2. As some cells are divided into cells maybe I have to use nested cells,
isn't it?
If the answer to these answers are YES my problem is that the layout I get
(WhatIGet.jpg) it's totally different to W
50 matches
Mail list logo