- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,当您按下 Enter 键时,TextFieldTableCell 会响应并调用 commitEdit()。
如果我使用自定义节点来显示,那么我如何监听确认编辑的方法?例如,我有一个 DateTimePicker,它扩展了 VBox。我无法将 KeyListener 添加到 VBox。
我可以做什么来观察表内编辑的确认?这是我尝试过的:
class TableCellDateTimePicker extends TableCell<CHILD, LocalDateTime> {
public TableCellDateTimePicker() {
super();
}
@Override
public void startEdit() {
super.startEdit();
DateTimePicker picker = new DateTimePicker();
picker.getDatePickerField().setOnKeyPressed((KeyEvent event) -> {
System.out.println("PRESS");
if (event.getCode() == KeyCode.ENTER) {
commitEdit(picker.getValue());
}
});
picker.setValue(getItem());
setGraphic(picker);
}
@Override
public void commitEdit(LocalDateTime newValue) {
super.commitEdit(newValue);
setText(newValue.toString());
}
@Override
public void cancelEdit() {
super.cancelEdit();
}
}
日期时间选择器:
/**
* A custom DateTimePicker that lets a user select a LocalDateTime.
*
* @author Toni-Tran
*/
public class DateTimePicker extends VBox {
@FXML
private DatePicker datePicker;
@FXML
private Button showTimePickerBtn;
private NumberPicker hourField;
private NumberPicker minuteField;
private ObjectProperty<LocalDateTime> currentLocalDateTimeValue;
public DateTimePicker() {
FXMLLoader loader = new FXMLLoader(this.getClass().getResource(
ScreenPaths.DATE_TIME_PICKER));
loader.setController(this);
loader.setRoot(this);
try {
loader.load();
} catch (IOException e) {
}
}
@FXML
private void initialize() {
showTimePickerBtn.setOnAction(event -> this.showTimePicker());
hourField = new NumberPicker();
hourField.setBounds(0, 23);
hourField.setWrapAround(true);
minuteField = new NumberPicker();
minuteField.setBounds(0, 59);
minuteField.setWrapAround(true);
currentLocalDateTimeValue = new SimpleObjectProperty<>();
datePicker.valueProperty().addListener((ObservableValue<? extends LocalDate> observable,
LocalDate oldValue, LocalDate newValue) -> {
LocalDateTime newLDT;
if (newValue != null) {
newLDT = LocalDateTime.of(newValue.getYear(),
newValue.getMonth(), newValue.getDayOfMonth(),
hourField.getValue(), minuteField.getValue());
currentLocalDateTimeValue.set(newLDT);
} else {
currentLocalDateTimeValue.set(null);
}
});
hourField.valueProperty().addListener((ObservableValue<? extends Number> observable,
Number oldValue, Number newValue) -> {
if (currentLocalDateTimeValue.getValue() != null) {
LocalDateTime newLDT = LocalDateTime.of(currentLocalDateTimeValue.getValue().getYear(),
currentLocalDateTimeValue.getValue().getMonth(), currentLocalDateTimeValue.getValue().getDayOfMonth(),
hourField.getValue(), minuteField.getValue());
currentLocalDateTimeValue.set(newLDT);
} else {
currentLocalDateTimeValue.set(null);
}
});
minuteField.valueProperty().addListener((ObservableValue<? extends Number> observable,
Number oldValue, Number newValue) -> {
if (currentLocalDateTimeValue.getValue() != null) {
LocalDateTime newLDT = LocalDateTime.of(currentLocalDateTimeValue.getValue().getYear(),
currentLocalDateTimeValue.getValue().getMonth(), currentLocalDateTimeValue.getValue().getDayOfMonth(),
hourField.getValue(), minuteField.getValue());
currentLocalDateTimeValue.set(newLDT);
} else {
currentLocalDateTimeValue.set(null);
}
});
}
/**
* Manually set a LocalDateTime value for this control.
*
* @param val The {@link LocalDateTime} value for this control.
*/
public void setValue(LocalDateTime val) {
if (val == null) {
return;
}
LocalDate day = LocalDate.of(val.getYear(), val.getMonthValue(),
val.getDayOfMonth());
datePicker.setValue(day);
hourField.setValue(val.getHour());
minuteField.setValue(val.getMinute());
}
/**
* Returns the currently set LocalDateTime.
*
* @return the {@link LocalDateTime} value of this control.
*/
public LocalDateTime getValue() {
return currentLocalDateTimeValue.getValue();
}
/**
* Returns the Observable property of the DateTimePicker's current
* LocalDateTime value.
*
* @return the Observable property of the DateTimePicker's current
* LocalDateTime value.
*/
public ObjectProperty<LocalDateTime> valueProperty() {
return currentLocalDateTimeValue;
}
/**
* This is triggered when the user wants to view the screen for setting a
* certain time for their LocalDateTime.
*/
public void showTimePicker() {
HBox topContainer = new HBox();
topContainer.getChildren().addAll(hourField, new Label(":"),
minuteField);
topContainer.setSpacing(3);
DialogPopup.showNodeApplicationlModal(topContainer);
}
}
最佳答案
通常,可编辑单元格在非编辑模式下将显示默认文本,在编辑模式下将显示编辑控件(您的 DateTimePicker
)。您的自定义单元实现需要处理这些之间的转换,并确保在更新单元格的项目时正确更新编辑控件的文本和值。
所以你应该覆盖updateItem(...)
更新 DateTimePicker
的值如果处于编辑模式 ( isEditing()
) 或文本(如果不处于编辑模式)。覆盖startEdit()
切换显示 DateTimePicker
而不是文本,和 cancelEdit()
切换回来。
您可能不需要覆盖 commitEdit()
根本不。如果您的列绑定(bind)到属性,则默认 commitEdit()
应该更新该属性(或者您可以在向列注册的 onEditCommit
处理程序中执行此操作)。
tutorial有一个完全实现的可编辑表格单元的示例:请参阅底部附近的 list 13.11。
但是,您需要调用 commitEdit(...)
在适当的时间。这个语义有点棘手:如果用户在 DateTimePicker
中的任何单个控件时按 Enter 键,您可能想要提交编辑。有焦点,也许当焦点从 DateTimePicker
移开时完全。
我建议创建一个 onAction
您的属性(property)DateTimePicker
类(class)。这很容易做到,你只需调用 setEventHander(...)
当属性发生变化时。 Richard Bair's MoneyField中有一个很好的例子(该链接中有很多内容,只需看看他在哪里创建 onAction
处理程序)。然后,您可以(在 DateTimePicker
内部)检查各个控件上的操作事件(或者可能是 Enter 键按下)并调用 fireEvent(new ActionEvent(...))
当这种情况发生时。然后您的表格单元实现可以注册 onAction
与 DateTimePicker
并调用commitEdit(...)
。
对焦点丢失进行编辑应该不会更困难。也许会暴露ReadOnlyBooleanProperty hasFocus()
在DateTimePicker
:
private final ReadOnlyBooleanWrapper hasFocus = new ReadOnlyBooleanWrapper(this, "hasFocus");
hasFocus.bind(
hourField.focusedProperty()
.or(minuteField.focusedProperty())
.or(datePicker.focusedProperty())
.or(showTimePickerButton.focusedProperty()));
// ...
public ReadOnlyBooleanProperty hasFocusProperty() {
return hasFocus.getReadOnlyProperty();
}
然后,您的单元实现可以观察该属性,并在其更改为 false
时提交编辑。 。您可能需要进行一些尝试才能使其令人满意地工作。
关于JavaFX 自定义 TableCell 监听,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25678242/
我遇到了一个奇怪的问题,我以前从未真正体验过这个,这是服务器的代码(在这种情况下客户端是 firefox),我创建它的方式: _Socket = new Socket( AddressFamily.I
我正在使用 C 编程语言在 Ubuntu 中开发原始套接字程序。由于我使用原始套接字,因此需要使用 SOCK_RAW 类型而不是 SOCK_STREAM。使用 SOCK_RAW 反过来会通过抛出 来禁
我实际上在客户端-客户端应用程序方面遇到了麻烦。这个问题中的一切都与Unix网络编程环境有关。 这是我的情况: 我有一个客户端(从现在起称为 C1),它调用 listen()在套接字上。 C1 输入
是否可以监听 QTcpSocket?我在 Tcp 上有一个简单的 p2p 连接。但是我找不到在随机自由端口上启动 QTcpSocket 的方法。我应该为此使用 QTcpServer,还是仅对 1 个连
我正在尝试根据 this documentation 监听码头更改事件和 ACTION_DOCK_EVENT . 我的接收器从未被击中。 我的代码看起来很简单,所以我想知道监听停靠事件是否需要权限?我
在 Linux 3.9 内核和更高版本中运行,我有一个应用程序 X,它在特定套接字上监听连接。我想写一个不相关的应用程序 Y,它跟踪尝试连接到此套接字的次数、源 IP 等。 是否可以在 c++ 中(最
是否可以监听日志条目?即是否存在用于附加日志条目的广播 Intent ? 最佳答案 没有 Intent 。 使用下面的代码: try { Process mLogcatProc
我已经实现了 installTap 方法,它为我提供了音频缓冲区浮点示例。我已经通过我的 C++ DSP 库过滤了它们。我想将此缓冲区“发送”到耳机/扬声器。我从示例中再次执行了 AVAudioPCM
我正在尝试启动一个在后台运行的服务,该服务正在监听 ACTION_SCREEN_OFF,当它找到 ACTION_SCREEN_OFF 时,启动我的 Activity 。 我在某处读到您需要创建一个Br
我正在开发一个 HOC,以帮助处理我的 React 应用程序中的表单(用于练习)。 // components/Wrapper.js import React from 'react'; export
我有“服务器端”mqtt 客户端,用于监视和管理远程 mqtt 客户端。我想扩展此服务器模块以密切关注远程客户端的连接。 在正常操作期间,远程客户端定期 PING 代理,根据代理日志: 1532924
我正在编写一个检查电池容量的守护进程。这是用于运行 Linux 的太阳能嵌入式设备。我读过使用 sleep() 是个坏主意在守护进程中,因此我正在尝试使用事件。所以我写了一些 PoC,但我没有收到任何
是否有一个库或技术来监听 Swing ui 对象上的所有可变事件?具体数据。 例如,我有一个带有 JTextArea、JCheckBox、JComboBox 等的 JPanel。有没有一种通用的方法可
使用 KineticJS,是否可以仅绑定(bind)函数一次?就像 jQuery 的等价物一样......例如。在 jQuery 中 // bad $('.wrap a').on('click', m
我正在使用 jquery 制作一个非常简单的富文本编辑器...我不想使用第三方的。 我需要监听 iframe(同一域等)内的事件,从输入开始。显然我需要经常使用bind()。 这就是我目前所拥有的,它
我有一个函数可以获取 XML 文档并根据 XSL 文档对其进行转换。然后,它将结果放入 id 为 laneconfigdisplay 的 div 中。我想要做的是,与转换逻辑分开,为该 div 设置一
如何检测 NSTextView 中的一行(即“\n”字符)被删除?我可以使用 textView:doCommandBySelector: 轻松监听新行并监听 "insertNewLine:"。 (参见
我有以下代码订阅 VisiblePosition 的属性更改事件Column 的属性(property)类(class): DependencyPropertyDescriptor dpd = Dep
我正在尝试在本地主机上收听浏览器的 DNS 请求。 我写了这段代码: WSADATA wsaData; unsigned char hostname[100]; int sockfd; struct
如何以 JSON 对象的形式接收对我网站上特定页面的回调?这些回调是从第三方 API 发出的,用于报告我与该 API 的通信状态。 我想过使用node.js的http.server.listen,但我
我是一名优秀的程序员,十分优秀!