diff options
-rw-r--r-- | src/main/resources/fxml/filterEmployeesControl.fxml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/resources/fxml/filterEmployeesControl.fxml b/src/main/resources/fxml/filterEmployeesControl.fxml new file mode 100644 index 0000000..7934d5a --- /dev/null +++ b/src/main/resources/fxml/filterEmployeesControl.fxml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.control.Button?> +<?import javafx.scene.control.Label?> +<?import javafx.scene.control.TextField?> +<?import javafx.scene.layout.AnchorPane?> + +<AnchorPane prefHeight="86.0" prefWidth="827.0" style="-fx-background-color: white;" + xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" + fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.FilterEmployeesController"> + <children> + <Label layoutX="14.0" layoutY="14.0" text="Filtern nach Name"/> + <TextField fx:id="inputFilterString" layoutX="22.0" layoutY="41.0" + onKeyReleased="#onFilterTextChanged" promptText="Name eingeben"/> + <Button layoutX="698.0" layoutY="48.0" mnemonicParsing="false" onAction="#onAddEmployeeClicked" + onInputMethodTextChanged="#onFilterTextChanged" text="Person hinzufügen"/> + </children> +</AnchorPane> |