summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-12-16 12:03:33 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-12-16 12:03:33 +0100
commit0a83cc1459b5703e802c552b711d0c9e3f679c45 (patch)
treee02225f3356d560e508b3f31680836f95d66397a /src/de/fhswf
parent4d63e00acc3a9c904e509fe4882a326a6df2bf35 (diff)
downloadProjektthemenvergabe-0a83cc1459b5703e802c552b711d0c9e3f679c45.tar.gz
Projektthemenvergabe-0a83cc1459b5703e802c552b711d0c9e3f679c45.zip
Group organisation elements
Diffstat (limited to 'src/de/fhswf')
-rw-r--r--src/de/fhswf/in/inf/se/projektthemenvergabe/view/AnsprechpartnerListe.fxml47
1 files changed, 43 insertions, 4 deletions
diff --git a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/AnsprechpartnerListe.fxml b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/AnsprechpartnerListe.fxml
index 47d5ecb..cedb1d8 100644
--- a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/AnsprechpartnerListe.fxml
+++ b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/AnsprechpartnerListe.fxml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
+<?import javafx.scene.text.*?>
<?import javafx.geometry.*?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
@@ -30,10 +31,48 @@
<bottom>
<HBox alignment="CENTER_RIGHT" spacing="10.0" BorderPane.alignment="CENTER">
<children>
- <ComboBox fx:id="organisationComboBox" prefWidth="150.0" />
- <Button mnemonicParsing="false" onAction="#handleAddOrganisation" text="Hinzufügen" />
- <Button fx:id="editOrganisation" disable="true" mnemonicParsing="false" onAction="#handleEditOrganisation" text="Bearbeiten" />
- <Button fx:id="deleteOrganisation" disable="true" mnemonicParsing="false" onAction="#handleDeleteOrganisation" text="Löschen" />
+ <GridPane style="-fx-border-color: grey;">
+ <columnConstraints>
+ <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
+ <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
+ <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
+ <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
+ </columnConstraints>
+ <rowConstraints>
+ <RowConstraints />
+ <RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
+ </rowConstraints>
+ <children>
+ <ComboBox fx:id="organisationComboBox" prefWidth="150.0" GridPane.rowIndex="1">
+ <GridPane.margin>
+ <Insets left="2.0" right="2.0" />
+ </GridPane.margin>
+ </ComboBox>
+ <Button mnemonicParsing="false" onAction="#handleAddOrganisation" text="Hinzufügen" GridPane.columnIndex="1" GridPane.rowIndex="1">
+ <GridPane.margin>
+ <Insets left="2.0" right="2.0" />
+ </GridPane.margin>
+ </Button>
+ <Button fx:id="editOrganisation" disable="true" mnemonicParsing="false" onAction="#handleEditOrganisation" text="Bearbeiten" GridPane.columnIndex="2" GridPane.rowIndex="1">
+ <GridPane.margin>
+ <Insets left="2.0" right="2.0" />
+ </GridPane.margin>
+ </Button>
+ <Button fx:id="deleteOrganisation" disable="true" mnemonicParsing="false" onAction="#handleDeleteOrganisation" text="Löschen" GridPane.columnIndex="3" GridPane.rowIndex="1">
+ <GridPane.margin>
+ <Insets left="2.0" right="2.0" />
+ </GridPane.margin>
+ </Button>
+ <Label text="Organisation" GridPane.columnSpan="4" GridPane.halignment="CENTER" GridPane.valignment="TOP">
+ <font>
+ <Font size="10.0" />
+ </font>
+ </Label>
+ </children>
+ <padding>
+ <Insets bottom="2.0" left="2.0" right="2.0" top="2.0" />
+ </padding>
+ </GridPane>
<Separator prefWidth="200.0" visible="false" HBox.hgrow="ALWAYS" />
<Button fx:id="addAnsprechpartner" disable="true" mnemonicParsing="false" onAction="#handleAdd" text="Hinzufügen" />
<Button fx:id="deleteAnsprechpartner" disable="true" mnemonicParsing="false" onAction="#handleDelete" text="Löschen" />