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

TableView.edit() method doesn't work after adding new row

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 8u40
    • fx2.1
    • javafx
    • Windows XP SP3, jdk1.7.0_03

      When we run edit() method of TableView control after adding new row into the control we can see selected new row but without edit mode.

      I copied example from Oracle website: http://docs.oracle.com/javafx/2/ui_controls/table-view.htm#CJAGDAHE. Then I put additional button for adding new row and define action for the button.

      final Button addButton = new Button("Add");
      addButton.setOnAction(new EventHandler<ActionEvent>() {

          @Override
          public void handle(ActionEvent arg0) {
              Person p = new Person("", "", "");
              table.getItems().add(p);
              table.getSelectionModel().select(p);
              table.edit(table.getSelectionModel().getSelectedIndex(), table.getColumns().get(2));
          }
      });

      When we compare similar method for editing existing rows it works properly.

      final Button editButton = new Button("Edit");
      editButton.setOnAction(new EventHandler<ActionEvent>() {

          @Override
          public void handle(ActionEvent arg0) {
              table.edit(table.getSelectionModel().getSelectedIndex(), table.getColumns().get(2));
          }
      });

            jgiles Jonathan Giles
            duke J. Duke
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: