There is a way how to set default value to ComboBox on JavaFx fxml.
I found sulution here: https://stackoverflow.com/a/14436371/1344424
<ComboBox editable="true">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="NVT" />
<String fx:value="Bezig" />
<String fx:value="Positief" />
<String fx:value="Negatief" />
</FXCollections>
</items>
<value>
<String fx:value="NVT" />
</value>
</ComboBox>
But it not working when Editable property set to true. How can I set default value to editable ComboBox?