diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-23 23:18:43 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-23 23:25:44 +0100 |
| commit | 750be47c99ecf61c0ce4f3915163bcc92c0ae7f4 (patch) | |
| tree | d654a7c9a76d001f6acf52cecbdc8975cbe6cba7 /src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml | |
| parent | 83f14ed743a7dc7de1c072195da58aa38fc12905 (diff) | |
| download | Notepad---750be47c99ecf61c0ce4f3915163bcc92c0ae7f4.tar.gz Notepad---750be47c99ecf61c0ce4f3915163bcc92c0ae7f4.zip | |
Show grades in table
Diffstat (limited to 'src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml')
| -rw-r--r-- | src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml b/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml index dcdf450..4ad372d 100644 --- a/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml +++ b/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainView.fxml @@ -46,13 +46,13 @@ <center> <AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER"> <children> - <TableView fx:id="noteTable" editable="true" prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> + <TableView fx:id="gradeTable" editable="true" prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> <columns> - <TableColumn prefWidth="75.0" text="Semester" /> - <TableColumn prefWidth="75.0" text="Modulname" /> - <TableColumn prefWidth="75.0" text="ECTS" /> - <TableColumn prefWidth="75.0" text="Note" /> - <TableColumn prefWidth="75.0" text="Versuch" /> + <TableColumn fx:id="semesterColumn" prefWidth="75.0" text="Semester" /> + <TableColumn fx:id="modulenameColumn" prefWidth="75.0" text="Modulname" /> + <TableColumn fx:id="ectsColumn" prefWidth="75.0" text="ECTS" /> + <TableColumn fx:id="gradeColumn" prefWidth="75.0" text="Note" /> + <TableColumn fx:id="attemptColumn" prefWidth="75.0" text="Versuch" /> </columns> <columnResizePolicy> <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> @@ -77,14 +77,14 @@ </rowConstraints> <children> <Label text="ECTS:" /> - <Label text="0" GridPane.columnIndex="1" /> + <Label fx:id="ectsSumLabel" text="0" GridPane.columnIndex="1" /> <Label text="Note:" GridPane.columnIndex="2" /> - <Label text="0,0" GridPane.columnIndex="3" /> - <Button mnemonicParsing="false" text="Neu" GridPane.columnIndex="4" /> + <Label fx:id="averageNoteLabel" text="0,0" GridPane.columnIndex="3" /> + <Button mnemonicParsing="false" onAction="#handleNew" text="Neu" GridPane.columnIndex="4" /> <Button disable="true" mnemonicParsing="false" text="Löschen" GridPane.columnIndex="5" /> <Label text="Kolloquium" GridPane.rowIndex="1" /> - <ComboBox disable="true" prefWidth="150.0" GridPane.columnIndex="1" GridPane.columnSpan="2" GridPane.rowIndex="1" /> - <ComboBox disable="true" prefWidth="150.0" GridPane.columnIndex="4" GridPane.columnSpan="2" GridPane.rowIndex="1" /> + <ComboBox fx:id="colloquiumComboBox" disable="true" prefWidth="150.0" GridPane.columnIndex="1" GridPane.columnSpan="2" GridPane.rowIndex="1" /> + <ComboBox fx:id="thesisComboBox" disable="true" prefWidth="150.0" GridPane.columnIndex="4" GridPane.columnSpan="2" GridPane.rowIndex="1" /> <Label text="Bachelor Arbeit" GridPane.columnIndex="3" GridPane.rowIndex="1"> <GridPane.margin> <Insets /> |
