テーブルがあり、チェックボックスのある列があります。
ボタンをクリックして、チェックされているチェックボックスとチェックされていないチェックボックスを確認したい。これまでのところ、テーブルにチェックボックスを作成することができました。コードは次のとおりです。
public class TTEs implements Initializable {
@FXML
private TableView<TestObject> tableReport;
@FXML
private TableColumn<TestObject, String> name;
@FXML
private TableColumn<TestObject, Boolean> checkbox;
@FXML
public void getValues() {
//the method will get what check boxes are checked (this part is the problem)
}
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
ObservableList<TestObject> data = FXCollections.observableArrayList();
data.add(new TestObject("Test 1", true));
data.add(new TestObject("Test 2", false));
tableReport.setItems(data);
name.setCellValueFactory(new PropertyValueFactory<TestObject, String>("name"));
checkbox.setCellValueFactory(new PropertyValueFactory<TestObject, Boolean>("checked"));
checkbox.setCellFactory(new Callback<TableColumn<TestObject, Boolean>,
TableCell<TestObject, Boolean>>() {
public TableCell<TestObject, Boolean> call(TableColumn<TestObject, Boolean> p) {
return new CheckBoxTableCell<TestObject, Boolean>();
}
});
}
//CheckBoxTableCell for creating a CheckBox in a table cell
public static class CheckBoxTableCell<S, T> extends TableCell<S, T> {
private final CheckBox checkBox;
private ObservableValue<T> ov;
public CheckBoxTableCell() {
this.checkBox = new CheckBox();
this.checkBox.setAlignment(Pos.CENTER);
setAlignment(Pos.CENTER);
setGraphic(checkBox);
}
@Override public void updateItem(T item, boolean empty) {
super.updateItem(item, empty);
if (empty) {
setText(null);
setGraphic(null);
} else {
setGraphic(checkBox);
if (ov instanceof BooleanProperty) {
checkBox.selectedProperty().unbindBidirectional((BooleanProperty) ov);
}
ov = getTableColumn().getCellObservableValue(getIndex());
if (ov instanceof BooleanProperty) {
checkBox.selectedProperty().bindBidirectional((BooleanProperty) ov);
}
}
}
}
}
デバッグすると、次のことがわかります。
ov = getTableColumn().getCellObservableValue(getIndex());
if (ov instanceof BooleanProperty) {
checkBox.selectedProperty().bindBidirectional((BooleanProperty) ov);
}
上記の条件では、if
ステートメント内に入ることはありません。つまり、ov
はBooleanProperty
のインスタンスではありません。しかし、ov
のクラスを出力すると、
System.out.println(ov.getClass().getName());
次のように印刷されます
javafx.beans.property.ReadOnlyObjectWrapper
ReadOnlyObjectWrapper
はBooleanProperty
のサブクラスですが、なぜinstanceof
チェックが機能しないのですか?
Java 8でテスト済み。
4つの簡単なことだけ。
1)CheckBoxCellFactoryクラスを作成します。プロジェクトのどこかに置きます。
public class CheckBoxCellFactory implements Callback {
@Override
public TableCell call(Object param) {
CheckBoxTableCell<Person,Boolean> checkBoxCell = new CheckBoxTableCell();
return checkBoxCell;
}
}
2)モデルクラス。たとえば人。
public static class Person {
private SimpleBooleanProperty checked = new SimpleBooleanProperty(false);
// other columns here
public SimpleBooleanProperty checkedProperty() {
return this.checked;
}
public Java.lang.Boolean getChecked() {
return this.checkedProperty().get();
}
public void setChecked(final Java.lang.Boolean checked) {
this.checkedProperty().set(checked);
}
// getter/setter for other columns
}
3)fxmlファイルに変更を加えました。 TableView-> TableColumnのセクションは次のようになります:
<TableColumn fx:id="checkBoxTableColumn" maxWidth="34.0" minWidth="26.0" prefWidth="34.0" resizable="false" sortable="false">
<cellValueFactory><PropertyValueFactory property="checked" /></cellValueFactory>
<cellFactory><partarch.fx.CheckBoxCellFactory /></cellFactory>
</TableColumn>
4)チェックボックスを編集可能にしたい場合
[〜#〜] sf [〜#〜] のバイナリでの実装と GitHub
TableView
のデータモデルをループして、各CheckBox
にバインドされているブール値を確認します。
@FXML
public void getValues(){
ObservableList<TestObject> data = tableReport.getItems();
for (TestObject item : data){
//check the boolean value of each item to determine checkbox state
}
}
package checkboxtablecelltest;
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.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.SelectionMode;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.CheckBoxTableCell;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
/**
*
* @author reegan
*/
public class CheckBoxTableCellTest extends Application {
@Override
public void start(Stage primaryStage) {
final TableView<Person> tableView = new TableView<Person>();
tableView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
tableView.setItems(FXCollections.observableArrayList(
new Person("Robert", "Plant"),
new Person("Neil", "Young"),
new Person("Willie", "Nelson"),
new Person("Natalie", "Merchant")));
tableView.getItems().get(3).setVegetarian(true);
final TableColumn<Person, String> firstNameCol = new TableColumn<Person, String>("First Name");
final TableColumn<Person, String> lastNameCol = new TableColumn<Person, String>("Last Name");
final TableColumn<Person, Boolean> vegetarianCol = new TableColumn<Person, Boolean>("Vegetarian");
tableView.getColumns().addAll(firstNameCol, lastNameCol, vegetarianCol);
firstNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("firstName"));
lastNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("lastName"));
vegetarianCol.setCellValueFactory(new PropertyValueFactory<Person, Boolean>("vegetarian"));
vegetarianCol.setCellFactory(CheckBoxTableCell.forTableColumn(vegetarianCol));
vegetarianCol.setEditable(true);
tableView.setEditable(true);
final BorderPane root = new BorderPane();
root.setCenter(tableView);
final HBox controls = new HBox(5);
final Button infoButton = new Button("Show details");
infoButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
for (Person p : tableView.getItems()) {
System.out.printf("%s %s (%svegetarian)%n", p.getFirstName(),
p.getLastName(), p.isVegetarian() ? "" : "not ");
System.out.println(tableView.getSelectionModel().getSelectedItems());
}
System.out.println();
}
});
controls.getChildren().add(infoButton);
root.setBottom(controls);
Scene scene = new Scene(root, 300, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
public static class Person {
private StringProperty firstName;
private StringProperty lastName;
private BooleanProperty vegetarian;
public Person(String firstName, String lastName) {
this.firstName = new SimpleStringProperty(firstName);
this.lastName = new SimpleStringProperty(lastName);
this.vegetarian = new SimpleBooleanProperty(false);
}
public String getFirstName() {
return firstName.get();
}
public String getLastName() {
return lastName.get();
}
public boolean isVegetarian() {
return vegetarian.get();
}
public void setFirstName(String firstName) {
this.firstName.set(firstName);
}
public void setLastName(String lastName) {
this.lastName.set(lastName);
}
public void setVegetarian(boolean vegetarian) {
this.vegetarian.set(vegetarian);
}
public StringProperty firstNameProperty() {
return firstName;
}
public StringProperty lastNameProperty() {
return lastName;
}
public BooleanProperty vegetarianProperty() {
return vegetarian;
}
}
}
`
このアプローチの主な問題は、CheckBoxTableCellの使用法です。セルは頻繁に再利用される「レンダリング」マシンです。 CheckBox変数のように状態を追加しようとすると、問題が発生します。
問題の最も簡単な修正は、毎回チェックボックスを割り当てることです。次のコードは、機能するチェックボックス列を提供します。
public static class Member {
private StringProperty myName;
private BooleanProperty myCheck;
public Member(String name, boolean checked) {
myName = new SimpleStringProperty(name);
myCheck = new SimpleBooleanProperty(checked);
}
public StringProperty nameProperty() { return myName; }
public BooleanProperty checkProperty() { return myCheck; }
}
VBox testTable6(VBox box) { // check box bind to cell property
ObservableList<Member> members = FXCollections.observableArrayList();
members.add(new Member("peter", true));
members.add(new Member("gernot", true));
members.add(new Member("fritz", false));
TableView<Member> table = new TableView<Member>();
table.prefHeightProperty().bind(box.heightProperty());
table.setItems(members);
TableColumn<Member,String> c1 = new TableColumn<Member,String>("Name");
c1.setCellValueFactory(new PropertyValueFactory<Member,String>("name"));
table.getColumns().add(c1);
TableColumn<Member,Boolean> c2 = new TableColumn<Member,Boolean>("Membercheck");
c2.setCellValueFactory(new PropertyValueFactory<Member,Boolean>("check"));
c2.setCellFactory(column -> new TableCell<Member, Boolean>(){
public void updateItem(Boolean check, boolean empty) {
super.updateItem(check, empty);
if (check == null || empty) {
setGraphic(null);
} else {
CheckBox box = new CheckBox();
BooleanProperty checked = (BooleanProperty)column.getCellObservableValue(getIndex());
box.setSelected(checked.get());
box.selectedProperty().bindBidirectional(checked);
setGraphic(box);
}
}
}
);
table.getColumns().add(c2);
box.getChildren().addAll(table);
return box;
}
双方向プロパティバインディングは弱いバインディングであるため、明示的にバインドを解除できない場合でも、カーベッジコレクションは適切に機能します。
BooleanPropertyへのチェックされていないキャストは、ここではとにかく良いスタイルではありません。申し訳ありません。以下を使用してオブジェクト全体にアクセスすることを検討してください。
...
Member member = table.getItems().get(getIndex());
box.setSelected(member.checkProperty().get());
box.selectedProperty().bindBidirectional(member.checkProperty());
....
ちなみに、birdeirectionalバインディングは、後で変更された場合にのみ、その瞬間に選択されたプロパティを設定しません!したがって、明示的な割り当て:
box.setSelected(member.checkProperty().get());
ここでは必須です。
少し外れたトピックですが、Kotlinでは次のことができます。
isPvtColumn.cellFactory = Callback { CheckBoxTableCell<KeyWithProperties, Boolean>() }
isPvtColumn.cellValueFactory = Callback {
a -> a.value.private
}
これですべてです
Initializeメソッドで、カスタムファクトリをJavaFXによって提供されるものに切り替えます。
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
ObservableList<TestObject> data = FXCollections.observableArrayList();
data.add(new TestObject("Test 1", true));
data.add(new TestObject("Test 2", false));
tableReport.setItems(data);
name.setCellValueFactory(new PropertyValueFactory<TestObject, String>("name"));
checkbox.setCellValueFactory(new PropertyValueFactory<TestObject, Boolean>("checked"));
checkbox.setCellFactory(
CheckBoxTableCell.forTableColumn(checkbox)
);
}
これで、データが列にバインドされ、アイテムを繰り返し処理して、「チェック済み」フィールドを確認できます。
@FXML
public void getValues(){
ObservableList<TestObject> data = tableReport.getItems();
for (TestObject item : data){
//check the boolean value of each item to determine checkbox state
}
}