Reputation: 11
I'm working on an application and using JavaFX. I am using the built-in DatePicker
but the calendar starts from Sunday, as visible on the image below. How to make the calendar start on Monday?
Upvotes: 0
Views: 266
Reputation: 11
I found a solution for this:
@FXML
private DatePicker date;
//In the initialize method you can use the following code:
@Override
public void initialize(URL location, ResourceBundle resources) {
date.setOnShowing(e -> Locale.setDefault(Locale.Category.FORMAT, Locale.UK));
//...
}
Upvotes: 0