-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathClientListCard.fxml
More file actions
35 lines (34 loc) · 1.56 KB
/
ClientListCard.fxml
File metadata and controls
35 lines (34 loc) · 1.56 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.FlowPane?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Region?>
<?import javafx.scene.layout.VBox?>
<HBox xmlns:fx="http://javafx.com/fxml/1" id="cardPane" fx:id="cardPane" xmlns="http://javafx.com/javafx/8">
<GridPane HBox.hgrow="ALWAYS">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10" prefWidth="150"/>
</columnConstraints>
<VBox alignment="CENTER_LEFT" minHeight="105" GridPane.columnIndex="0">
<padding>
<Insets top="5" right="5" bottom="5" left="15"/>
</padding>
<HBox spacing="5" alignment="CENTER_LEFT">
<Label fx:id="id" styleClass="cell_big_label">
<minWidth>
<!-- Ensures that the label text is never truncated -->
<Region fx:constant="USE_PREF_SIZE"/>
</minWidth>
</Label>
<Label fx:id="name" text="\$first" styleClass="cell_big_label"/>
</HBox>
<FlowPane fx:id="tags"/>
<Label fx:id="phone" styleClass="cell_small_label" text="\$phone"/>
<Label fx:id="clientLocation" styleClass="cell_small_label" text="\$location"/>
<Label fx:id="email" styleClass="cell_small_label" text="\$email"/>
</VBox>
</GridPane>
</HBox>