diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-06-15 12:47:37 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-16 15:15:32 +0200 |
commit | 5e35ae3262a733df1f5a9b05fb2356db6aaa94fd (patch) | |
tree | 3357c00db2a77cc26961fcc9f1c9f06a73cca215 /src/main/resources/fxml | |
parent | 2b2363f8f89058a1532f885a6cdd45c00434990b (diff) | |
download | sepm-groupproject-5e35ae3262a733df1f5a9b05fb2356db6aaa94fd.tar.gz sepm-groupproject-5e35ae3262a733df1f5a9b05fb2356db6aaa94fd.tar.xz sepm-groupproject-5e35ae3262a733df1f5a9b05fb2356db6aaa94fd.zip |
Set width to parent-width in filterEmployeesControl [#28618]
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/filterEmployeesControl.fxml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/resources/fxml/filterEmployeesControl.fxml b/src/main/resources/fxml/filterEmployeesControl.fxml index 01ec7b6..8f24a74 100644 --- a/src/main/resources/fxml/filterEmployeesControl.fxml +++ b/src/main/resources/fxml/filterEmployeesControl.fxml @@ -5,8 +5,11 @@ <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.AnchorPane?> -<AnchorPane prefHeight="86.0" prefWidth="640.0" style="-fx-background-color: white;" +<AnchorPane style="-fx-background-color: white;" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" + fx:id="apFilterEmployees" + prefWidth="${apFilterEmployees.parent.width}" + prefHeight="80" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.FilterEmployeesController"> <children> <Label layoutX="14.0" layoutY="14.0" text="Filtern nach Name"/> |