- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何为TableView中的单个单元格设置禁用属性?
这是我的场景:一列有一个 ComboBoxTableCell
,并且根据选择的项目,同一行上的某些单元格将被禁用。
例如:
如果我选择类型 A,则启用输入 A,禁用输入 B,反之亦然。
我所说的禁用是指清除、变灰且不可编辑。
我的场景的一个最小示例:
TableTest.java
package minimalexample;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.TableView;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class TableTest extends Application {
private TableView itemsTable;
ObservableList<ItemsTableLine> items;
@Override
public void start(Stage primaryStage) {
items = FXCollections.observableArrayList();
items.addAll(new ItemsTableLine("A","1","2"),
new ItemsTableLine("A","3","4"),
new ItemsTableLine("B","5", "6"),
new ItemsTableLine());
ItemsTable itemsTableParent = new ItemsTable();
itemsTable = itemsTableParent.makeTable(items);
VBox root = new VBox();
root.getChildren().addAll(itemsTable);
Scene scene = new Scene(root, 200, 100);
primaryStage.setTitle("Minimal Example");
primaryStage.setScene(scene);
primaryStage.show();
}
}
ItemsTable.java
package minimalexample;
import javafx.util.Callback;
import javafx.application.Platform;
import javafx.beans.property.SimpleObjectProperty;
import javafx.geometry.Pos;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableColumn.CellDataFeatures;
import javafx.scene.control.TableColumn.CellEditEvent;
import javafx.scene.control.TablePosition;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.ComboBoxTableCell;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;
public class ItemsTable {
private String lastKey = null;
// This will be exposed through a getter to be updated from list in LoadsTable
private TableColumn<ItemsTableLine, ItemType> typeCol;
private TableColumn<ItemsTableLine, String> inputACol;
private TableColumn<ItemsTableLine, String> inputBCol;
public TableView makeTable(ObservableList<ItemsTableLine> items) {
TableView tv = new TableView(items);
tv.setEditable(true);
Callback<TableColumn<ItemsTableLine, String>, TableCell<ItemsTableLine, String>> txtCellFactory
= (TableColumn<ItemsTableLine, String> p) -> {
return new EditingCell();
};
ObservableList<ItemType> itemTypeList
= FXCollections.observableArrayList(ItemType.values());
typeCol = new TableColumn<>("Type");
inputACol = new TableColumn<>("Input A");
inputBCol = new TableColumn<>("Input B");
typeCol.setCellValueFactory(new Callback<CellDataFeatures<ItemsTableLine, ItemType>, ObservableValue<ItemType>>() {
@Override
public ObservableValue<ItemType> call(CellDataFeatures<ItemsTableLine, ItemType> param) {
ItemsTableLine lineItem = param.getValue();
String itemTypeCode = lineItem.typeProperty().get();
ItemType itemType = ItemType.getByCode(itemTypeCode);
return new SimpleObjectProperty<>(itemType);
}
});
inputACol.setCellValueFactory(new PropertyValueFactory<>("inputA"));
inputBCol.setCellValueFactory(new PropertyValueFactory<>("inputB"));
typeCol.setCellFactory(ComboBoxTableCell.forTableColumn(itemTypeList));
inputACol.setCellFactory(txtCellFactory);
inputBCol.setCellFactory(txtCellFactory);
typeCol.setOnEditCommit((CellEditEvent<ItemsTableLine, ItemType> event) -> {
TablePosition<ItemsTableLine, ItemType> pos = event.getTablePosition();
ItemType newItemType = event.getNewValue();
int row = pos.getRow();
ItemsTableLine lineItem = event.getTableView().getItems().get(row);
lineItem.setType(newItemType.getCode());
});
inputACol.setOnEditCommit((TableColumn.CellEditEvent<ItemsTableLine, String> evt) -> {
evt.getTableView().getItems().get(evt.getTablePosition().getRow())
.inputAProperty().setValue(evt.getNewValue().replace(",", "."));
});
inputBCol.setOnEditCommit((TableColumn.CellEditEvent<ItemsTableLine, String> evt) -> {
evt.getTableView().getItems().get(evt.getTablePosition().getRow())
.inputBProperty().setValue(evt.getNewValue().replace(",", "."));
});
tv.getColumns().setAll(typeCol, inputACol, inputBCol);
return tv;
}
private class EditingCell extends TableCell {
private TextField textField;
@Override public void startEdit() {
if (!isEmpty()) {
super.startEdit();
createTextField();
setText(null);
setGraphic(textField);
//setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
Platform.runLater(() -> {//without this space erases text, f2 doesn't
textField.requestFocus();//also selects
});
if (lastKey != null) {
textField.setText(lastKey);
Platform.runLater(() -> {textField.deselect(); textField.end();});}
}
}
public void commit() { commitEdit(textField.getText()); }
@Override
public void cancelEdit() {
super.cancelEdit();
try {
setText(getItem().toString());
} catch (Exception e) {
}
setGraphic(null);
}
@Override
public void updateItem(Object item, boolean empty) {
super.updateItem(item, empty);
if (empty) {
setText(null);
setGraphic(null);
} else if (isEditing()) {
if (textField != null) {
textField.setText(getString());
}
setText(null);
setGraphic(textField);
} else {
setText(getString());
setGraphic(null);
if (!getTableColumn().getText().equals("Name")) {
setAlignment(Pos.CENTER);
}
}
}
private void createTextField() {
textField = new TextField(getString());
textField.focusedProperty().addListener(
(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2) -> {
if (!arg2) { commitEdit(textField.getText()); }});
textField.setOnKeyReleased((KeyEvent t) -> {
if (t.getCode() == KeyCode.ENTER) {
commitEdit(textField.getText());
EditingCell.this.getTableView().getSelectionModel().selectBelowCell(); }
if (t.getCode() == KeyCode.ESCAPE) { cancelEdit(); }});
textField.addEventFilter(KeyEvent.KEY_RELEASED, (KeyEvent t) -> {
if (t.getCode() == KeyCode.DELETE) { t.consume();}});
}
private String getString() {return getItem() == null ? "" : getItem().toString();}
}
}
ItemsTableLine.java
package minimalexample;
import java.io.Serializable;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
public class ItemsTableLine implements Serializable {
private StringProperty type;
private StringProperty inputA;
private StringProperty inputB;
public StringProperty typeProperty() {return type;}
public StringProperty inputAProperty() {return inputA; }
public StringProperty inputBProperty() {return inputB;}
public ItemsTableLine() {
super();
type = new SimpleStringProperty("");
inputA = new SimpleStringProperty("");
inputB = new SimpleStringProperty("");
}
public ItemsTableLine(String...values) {
this();
type.set(values[0]);
inputA.set(values[1]);
inputB.set(values[2]);
}
// Setters required due to combobox
public void setType(String value) {
type.set(value);
}
}
ItemsType.java
package minimalexample;
public enum ItemType {
TYPEA("A", "Type A"),
TYPEB("B", "Type B");
private String code;
private String text;
private ItemType(String code, String text) { this.code = code; this.text = text;}
public String getCode() { return code; }
public String getText() { return text; }
public static ItemType getByCode(String genderCode) {
for (ItemType g : ItemType.values()) if (g.code.equals(genderCode)) return g;
return null;
}
@Override public String toString() { return this.text; }
}
最佳答案
代码需要一些重构,但您可以通过执行以下操作来实现您所要求的:
inputACol.setCellFactory(param -> new EditingCell() {
@Override
public void updateItem(Object item, boolean empty) {
super.updateItem(item, empty);
if (item != null && !empty) {
ItemsTableLine data = (ItemsTableLine) getTableView().getItems().get(getIndex());
disableProperty().bind(Bindings.createBooleanBinding(() ->
!data.typeProperty().get().equals("A"), data.typeProperty()));
} else {
disableProperty().unbind();
}
}
});
inputBCol.setCellFactory(param -> new EditingCell() {
@Override
public void updateItem(Object item, boolean empty) {
super.updateItem(item, empty);
if (item != null && !empty) {
ItemsTableLine data = (ItemsTableLine) getTableView().getItems().get(getIndex());
disableProperty().bind(Bindings.createBooleanBinding(() ->
!data.typeProperty().get().equals("B"), data.typeProperty()));
} else {
disableProperty().unbind();
}
}
});
注意:有不止一种方法可以做到这一点,但这似乎是您的情况中最简单的方法。
注意:除了绑定(bind)中使用的值之外,两个代码块都是相同的,您可以编写一个方法,将其作为输入并返回单元工厂,而不是重复代码。
关于java - 为 TableView 单个单元格设置禁用属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59439492/
在gdb中获取此消息。我知道它不是错误或任何东西。我也做了分页,所以那不是问题。 有什么办法可以抑制此消息? 最佳答案 我很好奇看到这个问题没有得到解决... 我获得了GDB manual,它说(部分
好吧,这很烦人,而且可能很简单。我想用禁用的复选框启动我的网页,并在选择列表框中的特定行后启用这些框。所以我把它放在 onload 方法中 onload = function () { for
看来我需要以某种方式在我的 php 页面上禁用 IPv6,但我不确定该怎么做。我想我必须在我的 INI 文件中的某处添加 --disable-ipv6 ……虽然这看起来不像正确的语法。 我正在尝试解决
我有这两个代码: 第一个是禁用复制粘贴的宏: Sub Desable_Copy() Dim oCtrl As Office.CommandBarControl For Each oCt
在下面的代码中,我想, 如果我选择/单击“患者类型”按钮。它们在菜单“xmenumain”“儿科心电图”项中应该被禁用(它应该列在菜单列表中,但颜色为淡灰色)。我如何实现它? void MyMenu:
我目前在 Coordinator 布局中有一个底部导航栏,我向其添加了 HideBottomViewOnScrollBehaviour。有些屏幕需要隐藏导航栏,我可以通过从 BottomNavigat
我需要一些关于 jquery if 条件的帮助。我已经搜索和测试了几个小时,任何帮助都会很棒!我得到这个 HTML 代码: Value: No Match Test Test 2 Test 3
我正在开发 Delphi -7 中的自定义组件我有一些published特性 private { Private declarations } FFolderzip ,Fi
尝试学习菜单处理的基础知识。我的测试应用程序的菜单栏有 3 个菜单——即“TestApp”、“File”和“Help”。我发现我可以完全删除这些菜单,只需调用 say: NSMenu* rootMen
我以编程方式创建一个 NSMenuItem,但它被禁用。如果我重写 validateMenuItem: 方法并为所有项目返回 YES,则菜单项工作正常。 当我告诉菜单 autoEnableItems
我的 Web 表单中有一个 asp 按钮 (runat="server") 进入更新面板。 当我点击这个按钮时,它会执行一些操作。 Private Sub ButtonDoI
我目前正在为 video.js 构建一个插件,它可以在某些断点处将覆盖层呈现在屏幕上。但是,在不启动视频的情况下,我无法单击任何叠加层。我认为我需要禁用播放器上的点击播放功能。 我应该如何禁用/启用
设置剑道网格 selectable: "row", navigatable: true, 允许选择列标题单元格并通过键盘切换其排序状态。如何完全禁用使用键盘选择列标题单元格的功能? 最
我不想卸载code rush。我只是想在不需要的时候有机会将其关闭。 这可能吗? (快速版本)... 最佳答案 首先您应该打开“DevExpress”菜单。默认情况下,它在 CodeRush Xpre
设置: 我正在使用 TinyMCE 的 Angular 包装器来允许我的用户构建自己的电子邮件模板。这些电子邮件会发送给每个用户组织内的多个人员。我创建了自定义工具栏按钮来插入小文本 block [[
我希望下拉菜单在悬停时打开,前提是窗口大于 767 像素。我试图在页面加载和窗口调整大小时调用一个函数,并使用宽度大小条件。 enableHover() 函数仅适用于页面加载,不适用于窗口调整大小。
由于我遇到了一些问题,我正在 .NET Framework 4 中尝试连接池。使用 SQL Profiler,我可以看到每次从连接池中获取连接时,都会执行存储过程 sp_reset_connectio
我避免在我的 swift 代码中收到警告。然而,当谈到 Storyboard要求时,这对我来说有点困难。 所以现在我只想禁用 xcode 显示有关 Storyboard问题的警告。 我尝试了以下方法但
我不是 JavaScript 专家,我目前正在尝试为表单创建一个函数,该函数根据上一页上选择的数字重复相同的字段。 表单字段可能有 1 到 10 行,每行都有一个单选按钮选择,可启用/禁用每一行。 目
我正在尝试使用 CPU2006 运行各种基准测试,以查看各种优化在 gcc 速度方面的作用。我熟悉 -O1、-O2 和 -O3,但听说 -msse 是一个不错的优化。 -msse 到底是什么?我还看到
我是一名优秀的程序员,十分优秀!