Please tell me, how to make a JTable column to contain JTextAreas,
so the cell’s height will increase when user types a lot of text and
we can see more than one line (cell gets expanded; as result, row will expand too)
Please tell me, how to make a JTable column to contain JTextAreas, so the
Share
You need to write your own cell renderer and editor based on JTextArea:
EDIT: add viewports for better sizing. But the row is still not expanded on first edit. Does anyone have any ideas?
EDIT2: I agree with the comments. The thing you want is possible, but you need untested, hackish custom implementation. You will be better off if you redesigned your layout to exclude such JTable sorcery.