Re: off topic: LocalDate

2014-11-08 Thread omathe
Date date = Date.from(Instant.now()); - Mail original - De: Tom Eugelink t...@tbee.org À: openjfx-dev@openjdk.java.net Envoyé: Vendredi 7 Novembre 2014 22:49:01 Objet: off topic: LocalDate I'm trying to do some refactoring on the Agenda control; its skin class is quite large. I figured

Editable ComboBox bug ?

2014-09-01 Thread omathe
Hi, I have reproduce in a small example a ComBox behavior which I suspect to be a bug. When the TextField intercepts the event, the println displays the current value = OK When the ComboBox (which is an editable one) intercept the event the println does not display the current value = bug ?

Re: Editable ComboBox bug ?

2014-09-01 Thread omathe
In fact It is not a bug, I have just found the right way to get the value : System.out.println(comboBox value : + comboBox.getEditor().textProperty().get()); instead of System.out.println(comboBox value : + comboBox.valueProperty().get()); Sorry for the trouble Olivier - Mail original