JavaFX: BooleanBindings in bind with multiple EasyBind maps停止了这个问题。
我想进一步扩展行工厂:在表1中,产品每行显示一行,因此1个产品对象可能有多行。现在我只想禁用一行,如果表2中的金额等于行的总和。例如:Product(SKU:P1)在table1中有三行(均代表金额1)。如果Product2中的Product(SKU:P1)的数量= -2,则需要在table1中禁用此产品对象的2行。一个仍然需要启用,并不重要三个中的哪一个。
目前我有以下代码:
table1.setRowFactory(tv -> {
TableRow<Product> row = new TableRow<>();
row.disableProperty().bind(Bindings.createBooleanBinding(
() -> row.getItem() != null && (row.getItem().getSKU().startsWith("C") ||
(skuAmountLookup.containsKey(row.getItem().getSKU()) &&
-skuAmountLookup.get(row.getItem().getSKU()) <
amounts[SKUs.indexOf(row.getItem().getSKU())] )),
skuAmountLookup,
row.itemProperty()));
return row;
});
其中skuAmountLookup
是:
skuAmountLookup = table2.getItems().stream().collect(
Collectors.toMap(Product::getSKU, Product::getAmount, (x, y) -> y,
() -> FXCollections.observableHashMap()));
这仅在总金额为表1时禁用行。您可以将amounts[SKUs.indexOf(row.getItem().getSKU())]
更改为0
,这将在仅存在其中一个产品时禁用所有行。
我的问题是:如何更改行工厂,以便考虑另一行的disableProperty?
有关其他信息,请参阅:JavaFX: BooleanBindings in bind with multiple EasyBind maps和JavaFX: Disable multiple rows in TableView based on other TableView。