diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-11 16:35:10 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-11 16:57:15 +0100 |
| commit | 46ae68700fbc90c3cd2249589123835cd89e8d94 (patch) | |
| tree | aee266a27fa324cb8ab0c66737ea7a7bca6b0839 /src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml | |
| parent | 45ee03efdc57ae5a168d460590b905354048b733 (diff) | |
| download | Projektthemenvergabe-46ae68700fbc90c3cd2249589123835cd89e8d94.tar.gz Projektthemenvergabe-46ae68700fbc90c3cd2249589123835cd89e8d94.zip | |
Allow reseting of ansprechpartner and student
Diffstat (limited to 'src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml')
| -rw-r--r-- | src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml index 4cbc16e..1ce4cf7 100644 --- a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml +++ b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegen.fxml @@ -18,7 +18,7 @@ <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> <RowConstraints maxHeight="120.0" minHeight="10.0" prefHeight="111.0" vgrow="SOMETIMES" /> <RowConstraints maxHeight="144.0" minHeight="10.0" prefHeight="88.0" vgrow="SOMETIMES" /> - <RowConstraints maxHeight="67.0" minHeight="0.0" prefHeight="43.0" vgrow="SOMETIMES" /> + <RowConstraints minHeight="0.0" prefHeight="30.0" vgrow="SOMETIMES" /> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> @@ -89,26 +89,42 @@ <Font name="System Bold" size="12.0" /> </font> </Label> - <ComboBox fx:id="ansprechpartnerComboBox" prefHeight="25.0" prefWidth="500.0" GridPane.columnIndex="1" GridPane.rowIndex="4"> + <HBox alignment="CENTER_LEFT" GridPane.columnIndex="1" GridPane.rowIndex="4"> <GridPane.margin> <Insets left="10.0" right="10.0" /> </GridPane.margin> - </ComboBox> - <ComboBox fx:id="student1ComboBox" prefHeight="25.0" prefWidth="500.0" GridPane.columnIndex="1" GridPane.rowIndex="5"> + <children> + <ComboBox fx:id="ansprechpartnerComboBox" prefHeight="25.0" prefWidth="500.0" /> + <Button mnemonicParsing="false" onAction="#handleResetAnsprechpartner" prefWidth="400.0" text="Zurücksetzen" /> + </children> + </HBox> + <HBox alignment="CENTER_LEFT" GridPane.columnIndex="1" GridPane.rowIndex="5"> <GridPane.margin> <Insets left="10.0" right="10.0" /> </GridPane.margin> - </ComboBox> - <ComboBox fx:id="student2ComboBox" prefHeight="25.0" prefWidth="500.0" GridPane.columnIndex="1" GridPane.rowIndex="6"> + <children> + <ComboBox fx:id="student1ComboBox" prefHeight="25.0" prefWidth="500.0" /> + <Button mnemonicParsing="false" onAction="#handleResetStudent1" prefWidth="400.0" text="Zurücksetzen" /> + </children> + </HBox> + <HBox alignment="CENTER_LEFT" GridPane.columnIndex="1" GridPane.rowIndex="6"> <GridPane.margin> <Insets left="10.0" right="10.0" /> </GridPane.margin> - </ComboBox> - <ComboBox fx:id="student3ComboBox" minHeight="-Infinity" prefHeight="25.0" prefWidth="500.0" GridPane.columnIndex="1" GridPane.rowIndex="7"> + <children> + <ComboBox fx:id="student2ComboBox" prefHeight="25.0" prefWidth="500.0" /> + <Button mnemonicParsing="false" onAction="#handleResetStudent2" prefWidth="400.0" text="Zurücksetzen" /> + </children> + </HBox> + <HBox alignment="CENTER_LEFT" GridPane.columnIndex="1" GridPane.rowIndex="7"> <GridPane.margin> <Insets left="10.0" right="10.0" /> </GridPane.margin> - </ComboBox> + <children> + <ComboBox fx:id="student3ComboBox" minHeight="-Infinity" prefHeight="25.0" prefWidth="500.0" /> + <Button mnemonicParsing="false" onAction="#handleResetStudent3" prefWidth="400.0" text="Zurücksetzen" /> + </children> + </HBox> <TextField fx:id="projektthemaTextField" prefWidth="500.0" GridPane.columnIndex="1"> <GridPane.margin> <Insets left="10.0" right="10.0" /> |
