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

TextInputControl: css "-fx-columns" doesn't work

    XMLWordPrintable

Details

    Description

      To reproduce run following code


      import javafx.application.Application;
      import javafx.scene.Parent;
      import javafx.scene.Scene;
      import javafx.scene.control.TextField;
      import javafx.scene.layout.Pane;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class PasswordBoxSample extends Application {

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

          private Parent getContent() {

              VBox list = new VBox();
              Pane pane=new Pane();
              TextField box = new TextField();
              box.setText("TextTextText");
              box.setFocusTraversable(false);
              box.setStyle("-fx-columns: 4;");
              pane.getChildren().add(box);
              list.getChildren().addAll(pane);
              return list;
          }

          public void start(Stage stage) {
              stage.setX(100);
              stage.setY(100);
              Scene scene = new Scene(getContent());
              stage.setScene(scene);
              stage.show();
          }
      }

      Attachments

        Activity

          People

            rbair Richard Bair (Inactive)
            anazarov Andrey Nazarov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              Imported: