I have JTextArea text and JScrollPane pane=new JScrollPane(text), I put pane.setAutoScrolls(true). How to get that when I append some text to my component text that pane scrolls at the end ( last line ) ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Best (and up-to-date, as far as I can tell) explanation of how caret is moved, by Rob Camick: http://tips4java.wordpress.com/2008/10/22/text-area-scrolling/ |
|||
|
|
|
follows link from this thread ScrollPane scroll to bottom problem |
|||
|
|
|
Is it possible, that you are not on the EDT? If the append does not happen on the EDT, the position of the JTextArea does not update. Short, runnable example to show this behaviour:
|
||||
|
|
