I am using :
InlineCssTextArea textArea = new InlineCssTextArea();
textArea.setEditable(false);
textArea.setFocusTraversable(false);
and i am trying to scroll programmatically at the bottom :
//It returns the maximum length of the InlineCssTextArea `text`
System.out.println(textArea.getText().length());
System.out.println(textArea.getCaretPosition());
//It doesn't scroll to the end
textArea.positionCaret(textArea.getText().length());
The problem is that the length of InlineCssTextArea text is 830 even if the caret is positioned at 830 it doesn't scroll to the bottom...

Is it a bug?
Java Version: jdk1.8.0_112
RichTextFX Version: richtextfx-fat-0.6.10.jar
I am using :
and i am trying to scroll programmatically at the bottom :
The problem is that the length of
InlineCssTextAreatext is830even if the caret is positioned at830it doesn't scroll to the bottom...Is it a bug?