Re: [iText-questions] PDFTable makes no page break

2012-07-30 Thread 1T3XT BVBA
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

[iText-questions] PDFTable makes no page break

2012-07-29 Thread eageluhrig
Hi, 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: "... table.setTotalWidth(reader.getPageSize(1).getWidth() - 50f); PdfContentByte contentByte = stamp.getUnderContent(1);

Re: [iText-questions] PDFTable issue

2010-01-31 Thread 1T3XT info
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

Re: [iText-questions] PDFTable issue

2010-01-25 Thread Mike Marchywka
> 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

Re: [iText-questions] pdftable rowspan - bunching

2009-07-22 Thread Bruno Lowagie
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

Re: [iText-questions] pdftable rowspan - bunching

2009-07-22 Thread 1T3XT info
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

Re: [iText-questions] pdftable rowspan - bunching

2009-07-22 Thread 1T3XT info
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

[iText-questions] pdftable rowspan - bunching

2009-07-22 Thread pbs
Hi I am using pdfTable to create a table which will use rowspan to display a timetable. I dont think I can use pdfptable with nested tables because of the potential complexity of the table. For example, rows need to stretch over time slots if the timetabled subject is longer than normal. Using p

Re: [iText-questions] PdfTable header issue

2008-05-20 Thread Alexis Pigeon
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

Re: [iText-questions] PdfTable header issue

2008-05-19 Thread Alexis Pigeon
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

[iText-questions] PdfTable header issue

2008-05-19 Thread barik
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... any suggestion... Thanks in advance -- View this message in context: http://www.nabble.com/PdfTable-header-issue-tp1731206

Re: [iText-questions] PdfTable & new page / page break

2007-12-18 Thread edeniko
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(

Re: [iText-questions] PdfTable & new page / page break

2007-12-17 Thread Bruno Lowagie
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

[iText-questions] PdfTable & new page / page break

2007-12-17 Thread edeniko
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 document.add(tabl

[iText-questions] PdfTable, cell with problem

2006-11-02 Thread William Sundberg
Hi. I am trying to create the example an PdfTable where I can set the with for each columns based on the example: com.lowagie.examples.objects.tables.CellWidths. But the constructor has changed. Can someone help me and show me how to do this? Thank you/William

Re: [iText-questions] PdfTable with a cell with image and text...

2006-09-22 Thread bruno
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

[iText-questions] PdfTable with a cell with image and text...

2006-09-22 Thread Paolo Scaffardi
Hi there! This is my first message here... i've been using iText to convert my java JTable objects to PDF. 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

RE: [iText-questions] PdfTable Footer

2005-10-24 Thread Paulo Soares
nday, October 24, 2005 3:30 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PdfTable Footer > > I see that the PdfTable has support for a header that can be > applied to the table when the table spans pages. Is there any > support for a footer th

[iText-questions] PdfTable Footer

2005-10-24 Thread Mitch Freed
I see that the PdfTable has support for a header that can be applied to the table when the table spans pages. Is there any support for a footer that can be applied to the table similar to the header? Or is there some way to achieve similar functionality?   Thanks,   Mitch Freed [EMAIL PROTEC

[iText-questions] PdfTable Footer

2005-10-21 Thread Mitch Freed
I see that the PdfTable has support for a header that can be applied to the table when the table spans pages. Is there any support for a footer that can be applied to the table similar to the header? Or is there some way to achieve similar functionality?   Thanks,   Mitch Freed [EMAIL PROTE

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread Steve Appling
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

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread David Perez
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 Subject: [iText-questions] PdfTable background and borders Hi all, I think I ha

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread Steve Appling
ay, April 04, 2005 5:14 AM Subject: [iText-questions] PdfTable background and borders Hi all, I think I have found a bug in PdfTable (iText 1.02 but seems to also appear in the latest iText 1.2). I have several cells with a background color and can hide the border of neighboring cells. After havin

[iText-questions] PdfTable background and borders

2005-04-04 Thread David Perez
Hi all, I think I have found a bug in PdfTable (iText 1.02 but seems to also appear in the latest iText 1.2). I have several cells with a background color and can hide the border of neighboring cells. After having reviewed the source code (PdfDocument.java), I find two solutions: Paint the

[iText-questions] PdfTable

2005-02-14 Thread Nancy Nemouthe
Title: PdfTable  Excuse me but i don't speak English fluently. I want to write data in a pdfTable ( with two colums) and force the  writing direction: up to down, beginning by the first column. How can i do? thanks

RE: [iText-questions] PdfTable in Footer/Headers

2005-01-05 Thread Paulo Soares
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 > Subj

[iText-questions] PdfTable in Footer/Headers

2005-01-04 Thread tbensalah
Hello, is there any way for inserting a Table in the PDf header. As the HeaderFooter needs Phrases to work, I tried the RtfHeaderFooter, but this did not work too. In fact I need do some footer that have some text aligned Right and other aligned left (Doc name @ left and page number @ right fo

Re: [iText-questions] PdfTable Bug?

2004-11-22 Thread Paulo Soares
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 correc

[iText-questions] PdfTable Bug?

2004-11-22 Thread Cary Sweet
Title: Message I was looking through the code and came across something that did not look correct:   Code version: iText 1.1 Class: PdfPTable Method: constructor: PdfPTable(PdfPTable table) Line: 200       skipFirstHeader = this.skipFirstHeader; I believe should be       skipFi

RE: [iText-questions] PdfTable & footer

2004-09-09 Thread Paulo Soares
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-questio

[iText-questions] PdfTable & footer

2004-09-09 Thread William Garnett
Hello; I am overriding onPageEnd( ... ) to put in my own footer. The pages are all tables, some of which go down to the bottom of the page and overflow onto the next page. However, on the pages where I have a long table, the last row is printing on top of the footer. How can I control this so the

RE: [iText-questions] PdfTable

2004-01-22 Thread Paulo Soares
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

[iText-questions] PdfTable

2004-01-20 Thread Ujjwala Kadam
Hi, Can anyone tell me where can I get examples of PdfTable on iText   Thanks and regards Ujjwala Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes

RE: RE: [iText-questions] pdftable

2003-03-13 Thread Paulo Soares
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

Re: RE: [iText-questions] pdftable

2003-03-13 Thread Joel Matos
:Paulo Soares : :> -Original Message- :> From:Joel Matos [SMTP:[EMAIL PROTECTED] :> Sent:Thursday, March 13, 2003 11:49 :> To: [EMAIL PROTECTED] :> Subject: [iText-questions] pdftable :> :> Hi! :> I'm having some problens seting column w

RE: [iText-questions] pdftable

2003-03-13 Thread Paulo Soares
--Original Message- > From: Joel Matos [SMTP:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 11:49 > To: [EMAIL PROTECTED] > Subject: [iText-questions] pdftable > > Hi! > I'm having some problens seting column widths... > Can i set absolute values, even

[iText-questions] pdftable

2003-03-13 Thread Joel Matos
Hi! I'm having some problens seting column widths... Can i set absolute values, even if it causes the table to loose some columns? Like for example i have a report on the browser and user sets column widths in pixels... I want those columns in the pdftable to have user values even if only half of

RE: [iText-questions] pdfTable problems

2002-12-05 Thread Paulo Soares
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-que

[iText-questions] pdfTable problems

2002-12-04 Thread Friedhelm Matten
Hello ad all, I have a problem with the PDFTable. All works fine, but when a table cell with text is greater than the page height, the table ends on this page. No text and cell's will display on the next page...? -- Thanks and best regards Friedhelm Matten mailto:[EMAIL PROTECTED] --

Re: [iText-questions] PDFTable

2002-11-17 Thread Paulo Soares
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

Re: [iText-questions] PDFTable

2002-11-17 Thread Paulo Soares
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

[iText-questions] PDFTable

2002-11-16 Thread Larry Epps
Hello, Can anyone tell if you can position a PDFTable at an absolute position and indention on a PDF report and also limit the height of the table? If so would you please help me out. Thanks --- This sf.net email is sponsored by: To lea