-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
fx2.0
-
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);
}
}
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);
}
}