diff options
author | Viktoria Pundy <viktoria.pundy@aon.at> | 2018-06-19 15:26:33 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-19 21:33:08 +0200 |
commit | 7e2671d0d30bf217a40fd76c5676025218091a62 (patch) | |
tree | 990ee6995b5f20cb8ad497683d542feee11a2778 /src/main/resources | |
parent | 280196ec77ffb1ff722b947afa6b2e2439a663ec (diff) | |
download | sepm-groupproject-7e2671d0d30bf217a40fd76c5676025218091a62.tar.gz sepm-groupproject-7e2671d0d30bf217a40fd76c5676025218091a62.tar.xz sepm-groupproject-7e2671d0d30bf217a40fd76c5676025218091a62.zip |
Added search to archive window [#25963]
With search, the user can look for a specific archived operation. The search considers operation-code, location, date and name of the cars
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fxml/ArchiveOperation.fxml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main/resources/fxml/ArchiveOperation.fxml b/src/main/resources/fxml/ArchiveOperation.fxml index e9549ae..9c22803 100644 --- a/src/main/resources/fxml/ArchiveOperation.fxml +++ b/src/main/resources/fxml/ArchiveOperation.fxml @@ -4,6 +4,7 @@ <?import javafx.scene.control.Hyperlink?> <?import javafx.scene.control.Label?> <?import javafx.scene.control.ScrollPane?> +<?import javafx.scene.control.TextField?> <?import javafx.scene.image.ImageView?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.ColumnConstraints?> @@ -99,9 +100,10 @@ </AnchorPane> <AnchorPane fx:id="apMainDetails" layoutX="82.0" layoutY="80.0" prefHeight="138.0" prefWidth="822.0" style="-fx-background-color: white;" styleClass="shadowed"> <children> - <GridPane layoutY="14.0" prefHeight="113.0" prefWidth="451.0"> + <GridPane layoutY="14.0" prefHeight="114.0" prefWidth="804.0"> <columnConstraints> <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> + <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> </columnConstraints> <rowConstraints> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> @@ -124,6 +126,12 @@ <Font size="15.0" /> </font> </Label> + <Label text="Suche:" GridPane.columnIndex="1"> + <font> + <Font name="System Bold" size="20.0" /> + </font> + </Label> + <TextField fx:id="txtSearch" onKeyReleased="#searchInput" prefHeight="30.0" prefWidth="355.0" GridPane.columnIndex="1" GridPane.rowIndex="1" /> </children> <padding> <Insets left="20.0" /> |