Tarik Mujcic
Tarik Mujcic

Reputation: 11

How to make Monday start day in DatePicker Calendar Java - JavaFX

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?

enter image description here

Upvotes: 0

Views: 266

Answers (1)

Tarik Mujcic
Tarik Mujcic

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

Related Questions