我正在尝试使用JavaFX 8的DatePicker来禁用不在[今天,今天+ 1年]范围内的日期,类似于the example in the official tutorial。这是代码:
sample.fxml:
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.DatePicker?>
<GridPane fx:controller="sample.Controller"
xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
<DatePicker fx:id="dpDate"/>
</GridPane>
Main.java:
package sample;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Controller.java:
package sample;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.DateCell;
import javafx.scene.control.DatePicker;
import javafx.util.Callback;
import javafx.util.StringConverter;
import java.net.URL;
import java.time.LocalDate;
import java.time.chrono.HijrahChronology;
import java.time.format.DateTimeFormatter;
import java.util.ResourceBundle;
public class Controller implements Initializable
{
private final DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
@FXML private DatePicker dpDate;
@Override
public void initialize(URL location, ResourceBundle resources)
{
Callback<DatePicker, DateCell> dayCellFactory = dp -> new DateCell()
{
@Override
public void updateItem(LocalDate item, boolean empty)
{
super.updateItem(item, empty);
if(item.isBefore(LocalDate.now()) || item.isAfter(LocalDate.now().plusYears(1)))
{
setStyle("-fx-background-color: #ffc0cb; -fx-text-fill: darkgray;");
setDisable(true);
}
}
};
StringConverter converter = new StringConverter<LocalDate>()
{
@Override
public String toString(LocalDate date)
{
if(date != null) return dateFormatter.format(date);
else return "";
}
@Override
public LocalDate fromString(String string)
{
if(string != null && !string.isEmpty())
{
LocalDate date = LocalDate.parse(string, dateFormatter);
if(date.isBefore(LocalDate.now()) || date.isAfter(LocalDate.now().plusYears(1)))
{
return dpDate.getValue();
}
else return date;
}
return null;
}
};
dpDate.setDayCellFactory(dayCellFactory);
dpDate.setConverter(converter);
dpDate.setPromptText("dd/MM/yyyy");
dpDate.setValue(LocalDate.now());
dpDate.setChronology(HijrahChronology.INSTANCE);
}
}
此示例仅在我删除最后一行dpDate.setChronology(HijrahChronology.INSTANCE);
并将其保留为默认IsoChronology
时才有效(即用户无法选择超出范围)。
我尝试使用updateItem()
中的点击事件:
@Override
public void updateItem(LocalDate item, boolean empty)
{
super.updateItem(item, empty);
if(item.isBefore(LocalDate.now()) || item.isAfter(LocalDate.now().plusYears(1)))
{
setStyle("-fx-background-color: #ffc0cb; -fx-text-fill: darkgray;");
setDisable(true);
addEventFilter(MouseEvent.MOUSE_CLICKED, e -> e.consume());
}
}
它适用于当前月份(无法选择今天的前几天)。但如果我去接下来的几个月,它会阻止用户从允许的范围中选择一天。
肯定这是一个错误。有解决方法吗?如何访问日期选择器弹出窗口?也许我可以将监听器附加到更改月份页面的按钮,然后迭代所有说出的单元格并手动禁用超出范围的天数。
答案 0 :(得分:2)
我在JavaFX JIRA提交了一个错误报告,他们会在下一次更新8u60时修复它。以下是Leif Samuelsson建议的解决方法:
这是com.sun.javafx.scene.control.skin.DatePickerHijrahContent中的错误。在super调用自定义单元工厂上的updateItem()之后,它会覆盖updateDayCells()并在所有单元格上调用setDisable(false)。
解决方法是将setDisable()调用包装在Platform.runLater()中:
Platform.runLater(() -> { setDisable(true); });