Expanding on #5, there may be a range of things we want to happen when our data contains a long string:
Show it all on one line, making the column very wide. This is the current behaviour, but seems suboptimal.
We may want to wrap the text as suggested in #5, so that we can control the width at the expense of the height of the row.
Another option would be to specify a length at which the strings in a column should be truncated.
I suggest we add an enum field to the column type so that these behaviours can be selected. We would also need a width column for options 2 and 3, so that we would know when to wrap/truncate the string.
Expanding on #5, there may be a range of things we want to happen when our data contains a long string:
I suggest we add an enum field to the column type so that these behaviours can be selected. We would also need a width column for options 2 and 3, so that we would know when to wrap/truncate the string.
Question: What's a sensible default behaviour?