-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShowEmployee.fxml
64 lines (62 loc) · 3.53 KB
/
ShowEmployee.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.image.*?>
<?import javafx.scene.text.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="485.0" prefWidth="750.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="gui.ShowEmployeeController">
<children>
<GridPane layoutX="465.0" layoutY="121.0" prefHeight="77.0" prefWidth="323.0">
<children>
<Label prefHeight="17.0" prefWidth="113.0" text=" Navn:" />
<Label prefHeight="17.0" prefWidth="113.0" text=" Email:" GridPane.rowIndex="1">
<font>
<Font name="System" size="12.0" />
</font>
</Label>
<Label fx:id="navnL" prefHeight="36.0" prefWidth="252.0" GridPane.columnIndex="1" />
<Label fx:id="emailL" prefHeight="36.0" prefWidth="252.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
</children>
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" maxWidth="177.0" minWidth="10.0" prefWidth="139.0" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="255.0" minWidth="10.0" prefWidth="255.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints maxHeight="124.0" minHeight="10.0" prefHeight="38.0" vgrow="SOMETIMES" />
<RowConstraints maxHeight="210.0" minHeight="10.0" prefHeight="39.0" vgrow="SOMETIMES" />
</rowConstraints>
</GridPane>
<Label layoutX="55.0" layoutY="28.0" prefHeight="17.0" prefWidth="260.0" text="Ipsos Employee System" textAlignment="CENTER">
<font>
<Font name="System" size="18.0" />
</font>
</Label>
<ImageView fitHeight="112.0" fitWidth="112.0" layoutX="676.0" layoutY="16.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@img/ipsos_logo.jpg" />
</image>
</ImageView>
<Button layoutX="560.0" layoutY="69.0" mnemonicParsing="false" onAction="#handleSøgKompetence" prefHeight="43.0" prefWidth="96.0" text="Skill search" />
<Button layoutX="447.0" layoutY="69.0" mnemonicParsing="false" onAction="#handleCsøg" prefHeight="43.0" prefWidth="96.0" text="Clear search" />
<TextField fx:id="søgfelt" layoutX="55.0" layoutY="78.0" prefHeight="25.0" prefWidth="233.0" promptText="Insert name" />
<TableView fx:id="outputfelt" layoutX="47.0" layoutY="121.0" minWidth="-Infinity" prefHeight="252.0" prefWidth="382.0" AnchorPane.bottomAnchor="112.0" AnchorPane.leftAnchor="47.0" AnchorPane.rightAnchor="561.0" AnchorPane.topAnchor="121.0">
<columns>
<TableColumn fx:id="nameColumn" editable="false" prefWidth="122.0" style="-fx-alignment: center;" text="Name" />
<TableColumn fx:id="countryColumn" editable="false" prefWidth="97.0" style="-fx-alignment: center;" text="Country" />
<TableColumn fx:id="departmentColumn" editable="false" prefWidth="162.0" style="-fx-alignment: center;" text="Department" />
</columns>
</TableView>
<TableView fx:id="outputfelt2" layoutX="465.0" layoutY="198.0" prefHeight="174.0" prefWidth="323.0">
<columns>
<TableColumn fx:id="categoryColumn" editable="false" prefWidth="122.0" style="-fx-alignment: center;" text="Category" />
<TableColumn fx:id="skillColumn" editable="false" prefWidth="97.0" style="-fx-alignment: center;" text="Skill" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
<Button layoutX="333.0" layoutY="69.0" mnemonicParsing="false" onAction="#handleSøgKontakt" prefHeight="43.0" prefWidth="96.0" text="Search" />
</children>
</AnchorPane>