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

Rows disappear in TableView on rare circumstances when vertical scroll bar appear

XMLWordPrintable

    • generic
    • generic

      ADDITIONAL SYSTEM INFORMATION :
      MacOS 10.13.6
      openjdk version "17.0.6" 2023-01-17
      OpenJDK Runtime Environment Temurin-17.0.6+10 (build 17.0.6+10)
      OpenJDK 64-Bit Server VM Temurin-17.0.6+10 (build 17.0.6+10, mixed mode, sharing)

      Windows 10
      Version 22H2
      openjdk version "21.0.1" 2023-10-17 LTS
      OpenJDK Runtime Environment Temurin-21.0.1+12 (build 21.0.1+12-LTS)
      OpenJDK 64-Bit Server VM Temurin-21.0.1+12 (build 21.0.1+12-LTS, mixed mode, sharing)


      A DESCRIPTION OF THE PROBLEM :
      Under very rare conditions the contents of a TableView shrinks to only one row. This seems to happen when the vertical scrollbar just appears but shows no effect when trying to scroll. So the content still fits completely.

      After clicking to some rows all rows disappears until only one is left. We made some screenshots and created a screen cast video.

      We were able to reproduce the problem under macOS and Windows. Older versions of JavaFX did work

      JavaFX 17.0.2 - no bug
      JavaFX 17.0.6 - bug
      JavaFX 17.0.8 - bug
      JavaFX 18.0.2 - no bug
      JavaFX 19.0.2.1 - bug
      JavaFX 20.0.2 - bug
      JavaFX 21.0.1 - bug
      JavaFX 22-ea+16 - bug

      Seems that the problem was introduced with some fixing for TableView problems and backported to JavaFX 17.

      REGRESSION : Last worked in version 16

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Start the demo application and resize the height of the window until the vertical scrollbar appears. Use the scroll wheel or move the scrollbar. The content should not show any visual changes.

      Click into the last and into the first cell afterwards until the effect appears.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The rows should not disappear.
      ACTUAL -
      Only one row is left in TableView.

      ---------- BEGIN SOURCE ----------
      Note: 3 Source Files below:

      import javafx.application.Application;
      import javafx.beans.value.ChangeListener;
      import javafx.beans.value.ObservableValue;
      import javafx.collections.FXCollections;
      import javafx.collections.ObservableList;
      import javafx.scene.Scene;
      import javafx.scene.control.Button;
      import javafx.scene.control.TableColumn;
      import javafx.scene.control.TableView;
      import javafx.scene.control.ToolBar;
      import javafx.scene.control.cell.PropertyValueFactory;
      import javafx.scene.layout.Priority;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class TableViewBug extends Application {
      private static int count = 15;

      @Override
      public void start(Stage primaryStage) throws Exception {
      VBox vbox = new VBox();
      Scene scene = new Scene(vbox);
      ToolBar toolBar = new ToolBar();
      Button button1 = new Button("Button1");
      toolBar.getItems().add(button1);
      Button button2 = new Button("Button2");
      toolBar.getItems().add(button2);
      vbox.getChildren().add(toolBar);
      ObservableList<Person> data = FXCollections.observableArrayList();
      for (int i = 0; i < count; i++)
      data.add(new Person("Jacob", "Smith", "jacob.smith@example.com"));
      TableView<Person> table = new TableView<Person>();
      TableColumn<Person, String> firstNameCol = new TableColumn<>("First Name");
      firstNameCol.setMinWidth(100);
      firstNameCol.setCellValueFactory(
      new PropertyValueFactory<Person, String>("fname"));
      TableColumn<Person, String> lastNameCol = new TableColumn<>("Last Name");
      lastNameCol.setMinWidth(100);
      lastNameCol.setCellValueFactory(
      new PropertyValueFactory<Person, String>("lname"));
      TableColumn<Person, String> emailCol = new TableColumn<>("Email");
      emailCol.setMinWidth(200);
      emailCol.setCellValueFactory(
      new PropertyValueFactory<Person, String>("email"));
      table.setItems(data);
      table.getColumns().add(firstNameCol);
      table.getColumns().add(lastNameCol);
      table.getColumns().add(emailCol);
      vbox.getChildren().add(table);
      VBox.setVgrow(table, Priority.ALWAYS);
      ChangeListener<Person> changeListener = new ChangeListener<Person>() {
      @Override
      public void changed(ObservableValue<? extends Person> observable, Person oldValue, Person newValue) {
      System.out.println(scene.getWindow().getWidth() + " " + scene.getWindow().getHeight());
      }
      };
      table.getSelectionModel().selectedItemProperty().addListener(changeListener);
      primaryStage.setScene(scene);
      primaryStage.show();
      primaryStage.setWidth(402);
      primaryStage.setHeight(488);
      }

      public static void run(String[] args) {
      if (args.length == 1)
      count = Integer.parseInt(args[0]);
      launch(args);
      }
      }


      public class App {
      public static void main(String[] args) {
      TableViewBug.run(args);
      }
      }


      public class Person {
      private String fname;
      private String lname;
      private String email;

      public Person(String fname, String lname, String email) {
      this.fname = fname;
      this.lname = lname;
      this.email = email;
      }

      public String getFname() {
      return fname;
      }

      public String getLname() {
      return lname;
      }

      public String getEmail() {
      return email;
      }
      }

      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      Only solution we found was downgrade to JavaFX 17.0.2.

      FREQUENCY : always


            angorya Andy Goryachev
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated: