Changeset 10310 for main/waeup.kofa/trunk/src/waeup/kofa/browser
- Timestamp:
- 17 Jun 2013, 07:00:04 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py
r9980 r10310 625 625 domain='waeup.kofa', separators=None, 626 626 course_label=None, course_link=None, dept=None, 627 faculty=None ):627 faculty=None, colWidths=None): 628 628 """Return a reportlab `Table` instance, created from widgets 629 629 determined by `form_fields` and `context`. … … 687 687 688 688 # Create table 689 table = Table(table_data,style=table_style) #, rowHeights=14) 689 table = Table( 690 table_data,style=table_style, colWidths=colWidths) #, rowHeights=14) 690 691 table.hAlign = 'LEFT' 691 692 return table
Note: See TracChangeset for help on using the changeset viewer.