summaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml
diff options
context:
space:
mode:
authorDominic Rogetzer <e1627756@student.tuwien.ac.at>2018-05-01 11:46:20 +0200
committerDominic Rogetzer <e01627756@student.tuwien.ac.at>2018-05-03 22:48:29 +0200
commit1bb6757f9b66efba22f08c9650a0f8591a8b9c9e (patch)
treeb00e724491e5714cb3894e588a91b7e7112222c7 /src/main/resources/fxml
parent4849e2fdcdbaca390f427e13a45de9015c2e8752 (diff)
downloadsepm-groupproject-1bb6757f9b66efba22f08c9650a0f8591a8b9c9e.tar.gz
sepm-groupproject-1bb6757f9b66efba22f08c9650a0f8591a8b9c9e.tar.xz
sepm-groupproject-1bb6757f9b66efba22f08c9650a0f8591a8b9c9e.zip
add CreateNewEmployeeController and set on-click methods
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r--src/main/resources/fxml/createNewEmployee.fxml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/fxml/createNewEmployee.fxml b/src/main/resources/fxml/createNewEmployee.fxml
index 3acc7d1..5fa1ca9 100644
--- a/src/main/resources/fxml/createNewEmployee.fxml
+++ b/src/main/resources/fxml/createNewEmployee.fxml
@@ -16,8 +16,8 @@
<Label layoutX="206.0" layoutY="38.0" text="Qualifikation" />
<CheckBox fx:id="inputIsDriver" layoutX="343.0" layoutY="37.0" mnemonicParsing="false" text="Fahrer" />
<CheckBox fx:id="inputIsPilot" layoutX="343.0" layoutY="62.0" mnemonicParsing="false" text="Pilot" />
- <Hyperlink fx:id="btnCancel" layoutX="441.0" layoutY="31.0" text="abbrechen" />
- <Button fx:id="btnCreate" layoutX="441.0" layoutY="55.0" mnemonicParsing="false" text="Erstellen" />
+ <Hyperlink fx:id="btnCancel" layoutX="441.0" layoutY="31.0" onAction="#onCancelClicked" text="abbrechen" />
+ <Button fx:id="btnCreate" layoutX="441.0" layoutY="55.0" mnemonicParsing="false" onAction="#onCreateClicked" text="Erstellen" />
<TextField fx:id="inputName" layoutX="14.0" layoutY="57.0" prefHeight="25.0" prefWidth="179.0" />
<ChoiceBox fx:id="inputQualification" layoutX="199.0" layoutY="57.0" prefHeight="25.0" prefWidth="128.0" />
</children>