Re: [iText-questions] Problem of multi-rowspan

2011-04-29 Thread 1T3XT BVBA
Op 27/04/2011 19:13, teseo schreef: > Hi Everybody! > > I ask you please when the new version will be ready for download ? The fix is in the SVN repository. You could create your own jar if you need the fix today. Or, if you're a customer, you can get a jar created on demand. We don't provide this

Re: [iText-questions] Problem of multi-rowspan

2011-04-28 Thread teseo
Hi Everybody! I ask you please when the new version will be ready for download ? I have the same problem Thank you for advance Martin -- View this message in context: http://itext-general.2136553.n4.nabble.com/Problem-of-multi-rowspan-tp3443380p3478800.html Sent from the iText - General maili

Re: [iText-questions] Problem of multi-rowspan

2011-04-15 Thread Colin Cheng
Thanks a lot. I'll try it out later. On Fri, Apr 15, 2011 at 8:32 AM, 1T3XT BVBA wrote: > Op 13/04/2011 19:05, Colin Cheng schreef: > > No rush. Take care of your family first. > > I think the problem has been solved. I've uploaded the solution to the > SVN repository. > See the Log message: > >

Re: [iText-questions] Problem of multi-rowspan

2011-04-15 Thread 1T3XT BVBA
Op 13/04/2011 19:05, Colin Cheng schreef: > No rush. Take care of your family first. I think the problem has been solved. I've uploaded the solution to the SVN repository. See the Log message: Revision: 4808 http://itext.svn.sourceforge.net/itext/?rev=4808&view=rev Author: blowagie

Re: [iText-questions] Problem of multi-rowspan

2011-04-13 Thread Colin Cheng
No rush. Take care of your family first. On Tue, Apr 12, 2011 at 11:20 PM, 1T3XT BVBA wrote: > Op 12/04/2011 20:33, Colin Cheng schreef: > > Thanks for the answer. But I tried the following code, the problem > > persists. > > I know, it's a bug. > I'm working on it, but my son is at the hospital

Re: [iText-questions] Problem of multi-rowspan

2011-04-12 Thread 1T3XT BVBA
Op 12/04/2011 20:33, Colin Cheng schreef: > Thanks for the answer. But I tried the following code, the problem > persists. I know, it's a bug. I'm working on it, but my son is at the hospital all day, so you shouldn't expect a solution before next week. --

Re: [iText-questions] Problem of multi-rowspan

2011-04-12 Thread Colin Cheng
The nested table works fine. Here is the code, hope this can help someone with the same issue. PdfPTable tb = new PdfPTable(2); tb.setWidthPercentage(50); tb.getDefaultCell().setPadding(0); PdfPTable t1 = new PdfPTable(1); t1.addCell(new

Re: [iText-questions] Problem of multi-rowspan

2011-04-12 Thread Colin Cheng
Thanks for the answer. But I tried the following code, the problem persists. StringBuilder sb = new StringBuilder(); for(int i=0; i<100; i++) { sb.append("Line: ").append(i).append("\n"); } PdfPTable tb = new PdfPTable(2);

Re: [iText-questions] Problem of multi-rowspan

2011-04-12 Thread Nurettin DAG
I am wondering if this has to do with the two text modes supported with cells one being composite mode other being st else :) (I don t remember, you need to look at the book) I vaguely remember the details. However, the idea is that combination of the two in the same table is not supported. I beli

Re: [iText-questions] Problem of multi-rowspan

2011-04-12 Thread Colin Cheng
Is there anyone can help me? Thanks a lot. On Mon, Apr 11, 2011 at 4:24 PM, Colin Cheng wrote: > Hi, > > When the cell with multi-row span contains long text, the table will not be > rendered correctly. Thanks for any advice. > > Here is the code: > > this.doc = new Document(PageSize.A4)

[iText-questions] Problem of multi-rowspan

2011-04-11 Thread Colin Cheng
Hi, When the cell with multi-row span contains long text, the table will not be rendered correctly. Thanks for any advice. Here is the code: this.doc = new Document(PageSize.A4); this.writer = PdfWriter.getInstance(doc, new FileOutputStream("test.pdf")); doc.open();