JDK-8123266 : Text field selection is incomplete with arabic symbols
  • Type: Bug
  • Component: javafx
  • Sub-Component: controls
  • Affected Version: 8
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2013-08-30
  • Updated: 2015-06-17
  • Resolved: 2013-09-18
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8
8Resolved
Related Reports
Duplicate :  
Description
To reproduce: make any window focused and then make the app focused

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;

public class RT30511 extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) throws Exception {

        HBox root = new HBox(20d);

        TextField textField = new TextField("������������������������ �������� �������� �������� �������������� ��������");
        root.getChildren().add(textField);

        Scene scene = new Scene(root, 300, 250);

        stage.setScene(scene);
        stage.setTitle(System.getProperty("java.runtime.version") + "; " + System.getProperty("javafx.runtime.version"));
        stage.show();
    }
}

Comments
This is a duplicate of RT-32717, which has the same issue with overlapping Thai characters.
18-09-2013