I have a text field where text should be selected. But when all text is selected the cursor is not visible. This is my code:
public class NewMain1 extends Application {
@Override
public void start(Stage primaryStage) {
var badTextField = new TextField("Some text");
VBox root = new VBox(badTextField);
root.setPadding(new Insets(15));
Scene scene = new Scene(root, 300, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
And this is output:
As you see the cursor in not visible when text is selected. At the same time in Swing cursor is visible:
Could anyone say how to show cursor with selected text in TextField if it is possible?