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

Accordion: setExpandedPane() doesnt work.

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P3
    • fx2.0
    • fx2.0
    • javafx
    • b32
      windows 7

    Description

      To reproduce run following code



      import com.sun.javafx.css.StyleableProperty;
      import javafx.application.Application;
      import javafx.scene.Parent;
      import javafx.scene.Scene;
      import javafx.scene.control.Accordion;
      import javafx.scene.control.Label;
      import javafx.scene.control.TableCell;
      import javafx.scene.control.TitledPane;
      import javafx.scene.layout.VBox;
      import javafx.scene.paint.Color;
      import javafx.scene.shape.Rectangle;
      import javafx.stage.Stage;

      public class Accordions extends Application {

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

          private Parent getContent() {
              VBox list = new VBox(10);

              TitledPane pane1 = new TitledPane();
              pane1.setTitle(new Label("title 1\nLong text long text"));
              pane1.setContent(new Rectangle(100, 40, Color.SKYBLUE));
              TitledPane pane2 = new TitledPane();
              pane2.setTitle(new Label("title 2\nLong text long text"));
              pane2.setContent(new Rectangle(100, 40, Color.BLUEVIOLET));
              Accordion acc = new Accordion();
              acc.getPanes().addAll(pane1, pane2);
              acc.setExpandedPane(pane2);
              list.getChildren().add(acc);
              return list;
          }

          public void start(Stage stage) {
              stage.setX(100);
              stage.setY(100);
              stage.setWidth(300);
              stage.setHeight(300);
              Scene scene = new Scene(getContent());
              stage.setScene(scene);
              stage.setVisible(true);
          }
      }

      Attachments

        Activity

          People

            kwwong Kinsley Wong (Inactive)
            anazarov Andrey Nazarov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              Imported: