|
|
@ -1114,7 +1114,6 @@ public class UICoordinator implements ChangeListener<Boolean> |
|
|
|
levelOne.setItems(getOccupationList("")); |
|
|
|
levelOne.setDisable(false); |
|
|
|
levelOne.setValue(Text.NOT_SET); |
|
|
|
occupation= new Occupation(Text.NOT_SET); |
|
|
|
|
|
|
|
levelOne.valueProperty().addListener(new ChangeListener<String>() |
|
|
|
{ |
|
|
@ -1196,6 +1195,21 @@ public class UICoordinator implements ChangeListener<Boolean> |
|
|
|
comboContainer.getChildren().add(levelThree); |
|
|
|
comboContainer.getChildren().add(levelFour); |
|
|
|
|
|
|
|
if(occupation==null) |
|
|
|
{ |
|
|
|
occupation= new Occupation(Text.NOT_SET); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
String lTwo=occupation.getLevelTwo(); |
|
|
|
String lThree=occupation.getLevelThree(); |
|
|
|
String lFour=occupation.getLevelFour(); |
|
|
|
levelOne.setValue(occupation.getLevelOne()); |
|
|
|
levelTwo.setValue(lTwo); |
|
|
|
levelThree.setValue(lThree); |
|
|
|
levelFour.setValue(lFour); |
|
|
|
} |
|
|
|
|
|
|
|
HBox jobInfo = new HBox(); |
|
|
|
jobInfo.setId("jobInfo"); |
|
|
|
jobInfo.minWidthProperty() |
|
|
|