列ヘッダーをクリックして TableView を並べ替えると、チェックボックスの動作が予期しないものになります。そのうちの 1 つをチェックすると、別の 1 つがバインドされているように見え、選択されます。
TableView を並べ替える前は、すべてが期待どおりに機能しますが、並べ替えがトリガーされると、予期しない動作になります。
Windows 8 64ビットでCheckBoxTableCell
JDK 64ビットを実行しています。1.8.0-ea-b106
SSCCE は次のとおりです。
import javafx.application.Application;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.collections.transformation.SortedList;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.CheckBoxTableCell;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
/**
* Author: Anas H. Sulaiman (ahs.pw)
*/
public class CheckBoxTableCellBug extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Sami", "Haddad", false));
persons.add(new Person("Ahmed", "Hasan", true));
persons.add(new Person("Rami", "Kassar", true));
persons.add(new Person("Nehad", "Hamad", false));
persons.add(new Person("Jamal", "Raei", true));
persons.add(new Person("Ameer", "Raji", true));
persons.add(new Person("Tahseen", "Muhsen", true));
SortedList<Person> sortedList = new SortedList<>(persons);
TableView<Person> table = new TableView<>(sortedList);
sortedList.comparatorProperty().bind(table.comparatorProperty());
table.setEditable(true);
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
TableColumn<Person, String> colFirstName = new TableColumn<>("First Name");
colFirstName.setCellValueFactory(p -> p.getValue().firstName);
colFirstName.setCellFactory(TextFieldTableCell.forTableColumn());
colFirstName.setOnEditCommit(event -> event.getTableView().getItems().get(event.getTablePosition().getRow()).firstName.set(event.getNewValue()));
TableColumn<Person, String> colLastName = new TableColumn<>("Last Name");
colLastName.setCellValueFactory(p -> p.getValue().lastName);
colLastName.setCellFactory(TextFieldTableCell.forTableColumn());
colLastName.setOnEditCommit(event -> event.getTableView().getItems().get(event.getTablePosition().getRow()).lastName.set(event.getNewValue()));
TableColumn<Person, Boolean> colInvited = new TableColumn<>("Invited");
colInvited.setCellValueFactory(p -> p.getValue().invited);
colInvited.setCellFactory(CheckBoxTableCell.forTableColumn(colInvited));
table.getColumns().addAll(colFirstName, colLastName, colInvited);
stage.setScene(new Scene(new StackPane(table)));
stage.setTitle("CheckBoxTableCell Bug");
stage.show();
}
class Person {
public StringProperty firstName;
public StringProperty lastName;
public BooleanProperty invited;
public Person() {
this.firstName = new SimpleStringProperty("");
this.lastName = new SimpleStringProperty("");
this.invited = new SimpleBooleanProperty(false);
}
public Person(String fname, String lname, boolean invited) {
this();
this.firstName.set(fname);
this.lastName.set(lname);
this.invited.set(invited);
}
}
}
バグの再現方法:
- [名] 列のヘッダーを 1 回クリックして、テーブルを並べ替えます。
- [招待済み] 列の最初のチェック ボックスをオンにしてみてください
- [招待済み] 列の 3 番目のチェック ボックスをオンにしてみてください
予想通り、このバグは Ensemble (JavaFX サンプルに付属のアプリケーション) にも存在します。
これを回避する方法はありますか?