I’m very happy with JavaFX 8 release that has DatePicker control, finally. Value of DatePicker Control is LocalDate data type, but you can convert it to Date Object if you want it. LocalDate class is a new class in Java 8. A LocalDate represents a year-month-day date without time. By default, LocalDate is using the […]
Articles
Creating Custom Menu Separator in JavaFX
We can create custom menu easily in JavaFX using CustomMenuItem class. I was thinking that using that class, I can creat menu separator that has label. What I want to use with that was to group menu items. Each group should have label name using the menu separator. So, I created a component namely LabelSeparator […]