On 29/07/2012 19:25, eageluhrig wrote:
> i try to insert a table (filled with mysql) into PdfStamper. it works very
> well, except for there is no page break.
> here is my code:
Of course not!
> Where is my fault?
I don't know where to begin answering this question.
Maybe it's better if you read
Sándor Ádám wrote:
Hi ...
I have a problem with PDFTable under java. When I try to create a cell
with colspan it works. Same with rowspan. But if I try to enable both of
them to one cell java throes a NullPointExeption.
Works for me; see attachment.
--
This answer is provided by 1T3XT BVBA
h
> Date: Mon, 25 Jan 2010 12:39:09 +0100
>
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] PDFTable issue
>
>
>
>
>
>
>
>
> Hi ...
>
> I have a problem with PDFTable under java. When I try to create a cell
> with colspan it works. S
pbs wrote:
Hi
I am using pdfTable to create a table which will use rowspan to display a
timetable.
Please don't talk about pdfTable when you mean Table.
I dont think I can use pdfptable with nested tables because of
the potential complexity of the table.
Please don't talk about pdfptable w
1T3XT info wrote:
> pbs wrote:
>> Thank you for any help you could give. I have searched the net and bought
>> the book but cannot find my answer.
>
> Either read pages 179 to 181 very carefully and achieve what you want to
> do using nested tables.
I probably mistook you with "nets...@bk.ru" wh
pbs wrote:
> Thank you for any help you could give. I have searched the net and bought
> the book but cannot find my answer.
Either read pages 179 to 181 very carefully and achieve what you want to
do using nested tables.
Or wait until somebody who has a lot of work (and who isn't granted any
v
Hello Barik,
On 20/05/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hello Alexis,
Please don't reply to me personnally. This is a mailing list, thus all
messages should be sent to [EMAIL PROTECTED]
> Let me tell you in detail..I am supposed to add 3 tables as header in each
> new page o
Hi barik,
On 19/05/2008, barik <[EMAIL PROTECTED]> wrote:
>
> Hello All,
>
> I am trying to add pdftable to header .the header is generated on
> pageEvent.However the main content of the document is overlapping with the
> header part...
Have tou tried to change the top margin of your document
Hi,
My purpose is to insert blank page inside the table.
Thanks,
Bruno Lowagie (iText) wrote:
>
> edeniko wrote:
>> Hi,
>>
>> I'm using iText 1.4.7, and trying to insert a new page / page break into
>> PdfTable, with no luck.
>> Here's the code brief:
>>
>> PdfPTable table = new PdfPTable(
edeniko wrote:
Hi,
I'm using iText 1.4.7, and trying to insert a new page / page break into
PdfTable, with no luck.
Here's the code brief:
PdfPTable table = new PdfPTable(1);
PdfPCell cell = new PdfPCell(new Phrase("Something", font));
table.addCell(cell);
// NEW PAGE SHOULD BE INSERTED HERE
Paolo Scaffardi wrote:
>I have some problem with images inside PdfTable cells.
>
>This is part of my code:
>
>public PdfPCell getCell(String text, URL iconUrl) {
> PdfPCell cell = new PdfPCell();
> if (text != null) {
> Phrase phrase = new Phrase(text);
> ce
That's an interesting idea to add to PdfPTable, I'll have to think about
it. Currently to do that you'll have to place the table rows yourself.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Mitch Freed
> Sent: Monday, October 24, 2005 3:30 PM
seBorderPadding(true);
c.setBorder(Rectangle.BOX);
c.setBorderWidth(.2f);
tbl.addCell(c);
- Original Message -
From: "David Perez" <[EMAIL PROTECTED]>
To: "iText"
Sent: Monday, April 04, 2005 10:46 AM
Subject: Re: [iText-questions] PdfTable background and borders
Th
Thanks Steve
I have created a very small example that illustrates the bug.
I know PdfPTable is a lot better, but I mainly use PdfTable because it
offers rowspans.
Steve Appling schrieb:
This should be handled already. It seems to work fine in my simple
tests. Do you have a SIMPLE example of th
This should be handled already. It seems to work fine in my simple tests. Do you have a SIMPLE
example of the problem? BTW, it is probably better to use PdfPTable if you can.
- Original Message -
From: "David Perez" <[EMAIL PROTECTED]>
To: "iText"
Sent: Monday, April 04, 2005 5:14 AM
See the example headers_and_watermarks.java at itextpdf.sf.net.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of [EMAIL PROTECTED]
> Sent: Tuesday, January 04, 2005 4:33 PM
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions]
It's a bug.
- Original Message -
From: "Cary Sweet" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 22, 2004 22:58
Subject: [iText-questions] PdfTable Bug?
I was looking through the code and came across something that did not
look correct:
Code version: iText 1.1
Cla
Increase the bottom margin.
Best Regards,
Paulo Soares
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of William Garnett
> Sent: Thursday, September 09, 2004 2:52 PM
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] PdfTable & footer
>
> Hel
Title: RE: [iText-questions] PdfTable
itextpdf.sf.net
-Original Message-
From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Ujjwala Kadam
Sent: Wednesday, January 21, 2004 4:54
To: [EMAIL PROTECTED]
Subject: [iText-questions] PdfTable
Hi,
Can anyone
Best Regards,
Paulo Soares
> -Original Message-
> From: Joel Matos [SMTP:[EMAIL PROTECTED]
> Sent: Thursday, March 13, 2003 13:26
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Re: RE: [iText-questions] pdftable
>
> It
It isn't working...
I do this:
datatable.setWidths(myWidths);
datatable.setTotalWidth(totalWidths);
But even if i set absurd values, i always get the same layout that is a table that
fits perfectly in the
page, and it's smaller than if i set
datatable.setWidthP
It's a matter of arithmetic setting the right column size from
setTotalWidth(). I'm tempted to add a method to PdfPTable to do the
calculation. The last version allows the table to split if it's very wide
so, you can keep the other table half.
Best Regards,
Paulo Soares
> -Original Message---
That's the way it works. It's documented in the javadocs for PdfPTable.
Best Regards,
Paulo Soares
> -Original Message-
> From: Friedhelm Matten [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, December 05, 2002 3:49
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] pdfTable problems
Paulo Soares
- Original Message -
From: "Larry Epps" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, November 17, 2002 20:25
Subject: Re: [iText-questions] PDFTable
> Thanks Paulo,
>
> I saw where I could set the Horizonal position, but woul
It can be done with PdfPTable.
Best Regards,
Paulo Soares
- Original Message -
From: "Larry Epps" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 16, 2002 21:43
Subject: [iText-questions] PDFTable
> Hello,
>
> Can anyone tell if you can position a PDFTable at
25 matches
Mail list logo