vote up 0 vote down star

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

flag

2 Answers

vote up 2 vote down check

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|flag
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 at 2:19
I agree. If I have heavy tables, I just use fixed sizes (unfortunately). – Uri Feb 10 at 2:54
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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