I’m using a textArea
to display a log of progress for a long-running task. I’d like to keep it scrolled to the bottom, so that the user can see what’s happening as it goes. setCursorPosition(getValue().length()
doesn’t accomplish it, nor does setSelectionRange(getValue().length()-1, 1)
.
Ideas?