在我的代码中,我有一个绑定到ListProperty的表格视图。 我能够正确检索所有数据,但是我需要根据其中每个对象的特定属性对此数据集应用条件。 可能吗? 这是模型:
public class Ticket {
private String number;
private String sys_id;
private String short_description;
private String description;
private String opened_by;
private String assigned_to; // tabella esterna
private String assignment_group; // tabella esterna
private int incident_state; // 2: assigned - 3: wip - 4: hold
private String sys_created_on;
private Date sys_updated_on;
private int priority; // 1: critical
private boolean isVisible; // per nasconderlo nella tabella riassuntiva
private boolean isAlarmed; // per silenziare le notifiche
在控制器中,我已将表视图绑定到ListProperty(由ticketService.ticketsProperty()返回):
serviceNowTicket_tableView.itemsProperty().bindBidirectional(ticketService.ticketsProperty());
我只需要通过票证“ isVisible”属性对此进行过滤。 也许通过BooleanBinding?