Hi. Wrapping inside table columns is not currently supported by "write_html", nor are CSS properties.
One way to render wrapped text inside tables is to build the table using lines and then use "multi_cell" to wrap text inside the columns. This technique will require you to maintain careful track of the current position inside de PDF document. Some examples that may help you (disclaimer: wrote by me): - Wrapping with multi_cell: https://pyfpdfbook.wordpress.com/2015/03/22/wrapping-text-with-multicell/ - Putting two adjacent multicell blocks: https://pyfpdfbook.wordpress.com/2015/03/22/putting-two-adjacent-multicell-blocks/ You may also try Weasyprint (http://weasyprint.org/) which supports CSS styles. I have no experience with it yet, but looks interesting. On Thursday, September 3, 2015 at 6:43:40 AM UTC-4, at wrote: > > Hi, > > I was trying to use the first sample report from: > https://code.google.com/p/pyfpdf/wiki/Web2Py. I modified it a little to > fill the data dynamically inside the table, but the long text is not > wrapping inside the table cells. I've tried setting different css to > address the issue but no luck. > > Any idea how to fix it? > > Thanks a lot. > > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

