我正在使用controlfx的TableFilter属性来实现对javafx tableview的过滤功能。它工作得很好。但是一旦对特定列应用了过滤器,并且当动态添加新行时,就不会过滤该行。或者换句话说,列值会自动添加到该列的过滤器中。预期的行为是,要添加的行也应该根据定义的过滤器进行过滤。PFA演示问题的示例代码
import org.controlsfx.control.table.TableFilter;
import org.controlsfx.control.table.TableFilter.Builder;
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.geometry.Insets;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;
public class TableViewSample extends Application {
private TableView<Person> table = new TableView<Person>();
private final ObservableList<Person> data = FXCollections.observableArrayList(
new Person("aaJacob", "Smith", "jacob.smith@example.com"),
new Person("aaIsabella", "Johnson", "isabella.johnson@example.com"),
new Person("aaEthan", "Williams", "ethan.williams@example.com"),
new Person("Emma", "Jones", "emma.jones@example.com"),
new Person("Michael", "Brown", "michael.brown@example.com"));
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group());
stage.setTitle("Table View Sample");
stage.setWidth(450);
stage.setHeight(500);
final Label label = new Label("Address Book");
label.setFont(new Font("Arial", 20));
table.setEditable(true);
TableColumn firstNameCol = new TableColumn("First Name");
firstNameCol.setMinWidth(100);
firstNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("firstName"));
TableColumn lastNameCol = new TableColumn("Last Name");
lastNameCol.setMinWidth(100);
lastNameCol.setCellValueFactory(new PropertyValueFactory<Person, String>("lastName"));
TableColumn emailCol = new TableColumn("Email");
emailCol.setMinWidth(200);
emailCol.setCellValueFactory(new PropertyValueFactory<Person, String>("email"));
table.setItems(data);
table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);
Builder<Person> builder = TableFilter.forTableView(this.table);
builder.apply();
Button button = new Button("Add Row");
button.setOnAction((event) -> {
Person person = new Person("Jacob", "Smith", "jacob.smith@example.com");
System.out.println("Data is :" + data);
data.add(person);
});
final VBox vbox = new VBox();
vbox.setSpacing(5);
vbox.setPadding(new Insets(10, 0, 0, 10));
vbox.getChildren().addAll(label, table, button);
((Group) scene.getRoot()).getChildren().addAll(vbox);
stage.setScene(scene);
stage.show();
}
public static class Person {
private final SimpleStringProperty firstName;
private final SimpleStringProperty lastName;
private final SimpleStringProperty email;
private Person(String fName, String lName, String email) {
this.firstName = new SimpleStringProperty(fName);
this.lastName = new SimpleStringProperty(lName);
this.email = new SimpleStringProperty(email);
}
public String getFirstName() {
return firstName.get();
}
public void setFirstName(String fName) {
firstName.set(fName);
}
public String getLastName() {
return lastName.get();
}
public void setLastName(String fName) {
lastName.set(fName);
}
public String getEmail() {
return email.get();
}
public void setEmail(String fName) {
email.set(fName);
}
@Override
public String toString() {
return "Person [firstName=" + firstName + ", lastName=" + lastName + ", email=" + email + "]";
}
}
}发布于 2017-10-12 18:16:16
我也有同样的问题。也许controlsfx在TableFilter中有某种bug。我通过以编程方式创建我的表视图获得了解决方案。在以编程方式创建表视图的TableView.If中添加所有列之后,应该应用过滤器,然后您可以自由地动态添加列。
不要在TableColumns上应用过滤器。取而代之的是,对TableView应用过滤器。
TableFilter.forTableView(my_table_view).apply();
https://stackoverflow.com/questions/44903897
复制相似问题