[iText-questions] Nested Tables - Last line on page appears twice

2009-08-17 Thread Markus Dreseler
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

[iText-questions] Nested Tables - Last line on page appears twice

2009-08-17 Thread M. Dreseler
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.

Re: [iText-questions] Nested tables

2008-01-09 Thread mikew01
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

Re: [iText-questions] Nested tables

2008-01-09 Thread Bruno Lowagie
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,

[iText-questions] Nested tables

2008-01-09 Thread mikew01
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

[iText-questions] Nested tables problem

2008-01-04 Thread Jeff White
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.

Re: [iText-questions] Nested tables, works but with unwanted border

2007-10-30 Thread Bruno Lowagie (iText)
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 ---

[iText-questions] Nested tables, works but with unwanted border

2007-10-30 Thread BorO :: Qnab System AB
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

Re: [iText-questions] nested tables with xml.

2006-11-15 Thread Ruslan KULUBAEV
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

Re: [iText-questions] nested tables with xml.

2006-11-15 Thread Paulo Soares
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

[iText-questions] nested tables with xml.

2006-11-15 Thread Ruslan KULUBAEV
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

Re: [iText-questions] Nested tables

2006-02-10 Thread Bruno Lowagie
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 | -

Re: [iText-questions] Nested tables

2006-02-10 Thread Gaet
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

Re: [iText-questions] Nested tables

2006-02-10 Thread Bruno Lowagie
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

[iText-questions] Nested tables

2006-02-10 Thread Gaëtan Lepargneul
Hi,   Nested tables seems to be only for "Table" objects, not for "PdfPTable"   how to do nested PdfPTable, is it possible?   Thanks  

[iText-questions] Nested tables with borders result in multiple borders

2005-06-08 Thread Rebecca Peltz
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

[iText-questions] nested tables and colspans

2004-10-19 Thread cheeser
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

RE: [iText-questions] Nested tables

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

RE: [iText-questions] Nested tables

2004-09-28 Thread fredrik_bertilsson
>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);

RE: [iText-questions] Nested tables

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

[iText-questions] Nested tables

2004-09-28 Thread fredrik_bertilsson
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

RE: [iText-questions] Nested tables always flattened out?

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

Re: [iText-questions] Nested tables always flattened out?

2004-09-14 Thread Tom Hjellming
- 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

RE: [iText-questions] Nested tables always flattened out?

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

Re: [iText-questions] Nested tables always flattened out?

2004-09-14 Thread Tom Hjellming
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

RE: [iText-questions] Nested tables always flattened out?

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

[iText-questions] Nested tables always flattened out?

2004-09-13 Thread Tom Hjellming
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

Re: [iText-questions] nested Tables

2004-06-16 Thread Jonathan August
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

Re: [iText-questions] nested Tables

2004-06-15 Thread Bruno
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

[iText-questions] nested Tables

2004-06-15 Thread Jonathan August
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

RE: [iText-questions] Nested Tables And setCellsFitPage

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

[iText-questions] Nested Tables And setCellsFitPage

2004-06-11 Thread Murph
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

[iText-questions] nested tables

2003-09-24 Thread Valeria_Foco
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

[iText-questions] Nested Tables

2003-03-21 Thread Kenny Tong
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

[iText-questions] Nested tables with XML

2003-02-21 Thread Isaac . Goldstein
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

[iText-questions] nested tables

2003-02-04 Thread Somik Raha
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.

[iText-questions] Nested Tables

2002-12-18 Thread Ricardo Fonseca Nunes
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

[iText-questions] Nested Tables

2002-11-12 Thread Khaled Alakhras
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

[iText-questions] Nested Tables

2002-07-29 Thread Ryan Johnston
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

[iText-questions] Nested tables bug ?

2002-07-10 Thread Gerald Fehringer
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

RE: [iText-questions] nested tables - colspan

2002-07-03 Thread Bruno
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

Re: [iText-questions] nested tables - colspan

2002-07-03 Thread Bruno Lowagie
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

RE: [iText-questions] nested tables - colspan

2002-07-03 Thread Erwin Achermann
;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

[iText-questions] nested tables - colspan

2002-07-03 Thread Gerald Fehringer
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?  

Re: [iText-questions] Nested tables

2002-06-24 Thread Paulo Soares
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

[iText-questions] Nested tables

2002-06-24 Thread Susana Pereira
Hi, i started using iText a few days ago and unfortunately I’m 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

[iText-questions] Nested Tables

2002-03-04 Thread Geraldo Xexeo
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...    

[iText-questions] Nested Tables

2002-03-04 Thread Geraldo Xexeo
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

RE: [iText-questions] Nested tables and inner borders

2002-02-26 Thread Paulo Soares
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

[iText-questions] Nested tables and inner borders

2002-02-26 Thread Sergio Lopez Rodriguez
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