-
Bug
-
Resolution: Fixed
-
P4
-
fx2.0
In the following test, if you enter a number and hit enter in the bottom text box, the top text box should resize to match.
public class HelloTextField extends Application {
@Override
public void start(Stage stage) {
final TextField a = new TextField();
a.setPromptText("Enter text here");
final TextField d = new TextField();
d.setOnAction(new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent event) {
a.setPrefColumnCount(Integer.valueOf(d.getText()));
}
});
VBox box = new VBox(5);
box.setFillWidth(false);
box.getChildren().addAll(a, d);
stage.setScene(new Scene(box, 500, 500));
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
public class HelloTextField extends Application {
@Override
public void start(Stage stage) {
final TextField a = new TextField();
a.setPromptText("Enter text here");
final TextField d = new TextField();
d.setOnAction(new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent event) {
a.setPrefColumnCount(Integer.valueOf(d.getText()));
}
});
VBox box = new VBox(5);
box.setFillWidth(false);
box.getChildren().addAll(a, d);
stage.setScene(new Scene(box, 500, 500));
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}