-
Enhancement
-
Resolution: Unresolved
-
P3
-
8u5
-
N/A
This may be considered an umbrella REF for sizing in TableView, and possibly TreeTableView.
Sizing columns correctly is a very important part of making a good-looking table. Currently TreeView does not support this, to my knowledge, which I was very surprised by since it’s such a basic feature.
1) One needs to be able to dynamically affect the min/preferred/max size of a column. This should take the header size in mind, which can be wider that the content. The problem is to not always have to instantiate all cells in a column to get the value. I suggest a callback that is fed the cell of the header or similar.
The default implementation should just iterates through the visible (or to-be visible) cells (or all, maybe customizable) to get the value. The developer should be able to install a callback that does the calculations in some other way, possibly just directly returning a min/pref/max value. An alternative is to make it more customizable how the calculations are done, but a callback is a fail safe. Maybe the default callback can be customizable to some extent.
2) The actual size of the column needs to be settable. Now that seems to be impl_.
3) There should be a table.resizeColumnsToFit(mode) method to set the sizes according to the current content and 1). Sometimes only the developer knows when it is appropriate to resize.
4) There needs to be a way to get the header of the table and do operations on it, like ask for cells preferred size and possibly more. Since you can’t get the header at all in JavaFX 8 I haven’t fiddled much with it.
5) The cursor needs to change when you are over the columns resize area. It doesn’t now, at least not on OS X using 8u5.
6) Handling shrink/grow behavior of columns and thus how they size themselves. When the content changes or the size of the table changes, both very likely scenarios, how the column sizes react is key to a good UI. In MigLayout there’s a very flexible way to handle shrink & grow for components (here it’s columns though). For each of them there’s a “priority” and a “weight”. It work the same for shrink and grow but I’ll use grow here to explain.
When the table is “set to grow columns to fit the table”, and all columns have at least their preferred size, some needs to grow to take the extra space. Here’s the simple algorithm:
- The columns are sorted on their priority and acted on in that order, until the sum of column sizes are same as the table size.
- All with the same priority (note!) are grown in proportion to their “grow weight”, but none are of course grown above their maximum size. They are grown with the goal to exactly fill the extra space.
- If all columns with the handled priority are at their max size and there’s still space to fill, the algorithm is run again with the lower priorities.
The same algo is used for shrinkage but then it’s trying to shrink the columns to fit, but not below their min size.
The nice thing with this way of handling shrink and grow is that it is extremely flexible yet very easy for the developer to affect. Trying to make the basic algo simpler, like only using weights, will only make it frustrating when you go beyond the simplest cases (like using very big and very small weights to simulate priorities, totally GridBag style :).
The API for this is on TableColumn I guess so it’s well targeted and won’t pollute API for the generic cases.
Sizing columns correctly is a very important part of making a good-looking table. Currently TreeView does not support this, to my knowledge, which I was very surprised by since it’s such a basic feature.
1) One needs to be able to dynamically affect the min/preferred/max size of a column. This should take the header size in mind, which can be wider that the content. The problem is to not always have to instantiate all cells in a column to get the value. I suggest a callback that is fed the cell of the header or similar.
The default implementation should just iterates through the visible (or to-be visible) cells (or all, maybe customizable) to get the value. The developer should be able to install a callback that does the calculations in some other way, possibly just directly returning a min/pref/max value. An alternative is to make it more customizable how the calculations are done, but a callback is a fail safe. Maybe the default callback can be customizable to some extent.
2) The actual size of the column needs to be settable. Now that seems to be impl_.
3) There should be a table.resizeColumnsToFit(mode) method to set the sizes according to the current content and 1). Sometimes only the developer knows when it is appropriate to resize.
4) There needs to be a way to get the header of the table and do operations on it, like ask for cells preferred size and possibly more. Since you can’t get the header at all in JavaFX 8 I haven’t fiddled much with it.
5) The cursor needs to change when you are over the columns resize area. It doesn’t now, at least not on OS X using 8u5.
6) Handling shrink/grow behavior of columns and thus how they size themselves. When the content changes or the size of the table changes, both very likely scenarios, how the column sizes react is key to a good UI. In MigLayout there’s a very flexible way to handle shrink & grow for components (here it’s columns though). For each of them there’s a “priority” and a “weight”. It work the same for shrink and grow but I’ll use grow here to explain.
When the table is “set to grow columns to fit the table”, and all columns have at least their preferred size, some needs to grow to take the extra space. Here’s the simple algorithm:
- The columns are sorted on their priority and acted on in that order, until the sum of column sizes are same as the table size.
- All with the same priority (note!) are grown in proportion to their “grow weight”, but none are of course grown above their maximum size. They are grown with the goal to exactly fill the extra space.
- If all columns with the handled priority are at their max size and there’s still space to fill, the algorithm is run again with the lower priorities.
The same algo is used for shrinkage but then it’s trying to shrink the columns to fit, but not below their min size.
The nice thing with this way of handling shrink and grow is that it is extremely flexible yet very easy for the developer to affect. Trying to make the basic algo simpler, like only using weights, will only make it frustrating when you go beyond the simplest cases (like using very big and very small weights to simulate priorities, totally GridBag style :).
The API for this is on TableColumn I guess so it’s well targeted and won’t pollute API for the generic cases.