up vote 4 down vote favorite
share [g+] share [fb]

What's the preferred way of this (based on header & contents width I believe)?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The Java Developer Almanac contains some good sample code for packing tables based on column width, this may be a good place to start.

link|improve this answer
i'd suggest limiting the rows you check if it is a large table. We do things where the model does not actually contain all the data, some is fetched on demand. If you try to look at 1,000,000 rows to calculate width, you'll page in a lot of data! – John Gardner Feb 10 '09 at 2:19
I agree. If I have heavy tables, I just use fixed sizes (unfortunately). – Uri Feb 10 '09 at 2:54
feedback

Header and content widths, which include both characters and fonts. You'll need a wider column for a 14 point sans serif font than an 8 point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.