Trying to get focus onto JTextPane after doubleclicking on JList element (Java)
- by Alex Cheng
Hi all.
Problem:
I have the following JList which I add to the textPane, and show it upon the caret moving. However, after double clicking on the Jlist element, the text gets inserted, but the caret is not appearing on the JTextPane.
This is the following code:
listForSuggestion = new JList(str.toArray());
…