diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-06-06 21:09:58 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-07 17:51:20 +0200 |
commit | 812f94aa2979d3199ebfd361d2a5b366bd44547e (patch) | |
tree | 4f06c470a7f5bc68848b63d4e3b61cf22b17ff77 /src/main/resources/fxml | |
parent | ed3d2bf854baf673373e31330010265ef33d7e74 (diff) | |
download | sepm-groupproject-812f94aa2979d3199ebfd361d2a5b366bd44547e.tar.gz sepm-groupproject-812f94aa2979d3199ebfd361d2a5b366bd44547e.tar.xz sepm-groupproject-812f94aa2979d3199ebfd361d2a5b366bd44547e.zip |
Enable hiding edit-button in EmployeeListItemController [#25963]
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/employeeListItem.fxml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/resources/fxml/employeeListItem.fxml b/src/main/resources/fxml/employeeListItem.fxml index 05354fc..bec2e1e 100644 --- a/src/main/resources/fxml/employeeListItem.fxml +++ b/src/main/resources/fxml/employeeListItem.fxml @@ -18,7 +18,8 @@ <Font name="System Bold" size="18.0"/> </font> </Label> - <Button layoutX="298.0" layoutY="5.0" mnemonicParsing="false" onAction="#onEditEmployeeClicked" + <Button fx:id="btnEdit" layoutX="298.0" layoutY="5.0" mnemonicParsing="false" + onAction="#onEditEmployeeClicked" text="bearbeiten" AnchorPane.rightAnchor="5.0" AnchorPane.topAnchor="5.0"/> <HBox layoutX="10.0" layoutY="40.0" prefHeight="42.0" prefWidth="339.0" AnchorPane.leftAnchor="10.0" AnchorPane.topAnchor="40.0"> |