This is a discussion on focus not set in jtextpane - Java ; I have jtextpanes created inside a jscrollpane. when i use tab key to move the focus from one textpane to the other, it works fine for the first time. when i tab the next time from jtextpane 1, the caret ...
I have jtextpanes created inside a jscrollpane. when i use tab key to move the focus from one textpane to the other, it works fine for the first time. when i tab the next time from jtextpane 1, the caret position is set to the next textpane 2, but the focus is not set to the jtextpane 2, which is basically because the jscrollpane is not moving. so what can i do to move the jscrollpane when the focus changes for the jtextpane.
i am using:
jTextPane.requestFocusInWindow();
jTextPane.setCaretPosition(1);