Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8111748

TextBox dn't show the last character

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 8
    • fx2.0
    • javafx
    • Windows Vista Ultimate service pack2, jdk 6u18,

      I have a TextBox with contains some characters, when the textbox is visible, i see that last character is not seen.
      Even i tried clicking on the textbox and moved the left arrow, but still the last character is not.



      import javafx.scene.Group;
      import javafx.scene.Scene;
      import javafx.scene.control.TextBox;
      import javafx.stage.Stage;

      /**
       *
       * @author LawrencePremKumar
       */
      public class ChatWindow extends javafx.application.Application{

          Stage stage = new Stage();

          @Override
          public void start(Stage stage) {
              Group root = new Group();
              Scene scene = new Scene(root , 500,500);

              TextBox ta = new TextBox("lawrence prem kumar");
              
             // ta.selectAll();
              root.getChildren().add(ta);
              stage.setScene(scene);
              stage.setVisible(true);
          }

          public static void main(String []args){
              javafx.application.Launcher.launch(ChatWindow.class, args);
          }

      }

            gkbrown Greg Brown (Inactive)
            lpremkumajfx Lawrence Premkumar (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: