Kenmegne
7 days ago b3d0580439b9a00c7eb918085de1694151066004
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
 
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.DatePicker?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.VBox?>
 
<AnchorPane id="AnchorPane" prefHeight="120.0" prefWidth="773.0" stylesheets="@../../../../../../styles/CustomFormComponents.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="importation.validation.data.client.controller.search.TypeFichierAdvancedSearchFormController">
   <children>
      <VBox prefHeight="200.0" prefWidth="100.0" spacing="10.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
         <children>
            <GridPane hgap="110.0" vgap="20.0">
              <columnConstraints>
                <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
                <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
              </columnConstraints>
              <rowConstraints>
                <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" />
              </rowConstraints>
               <children>
                  <HBox spacing="10.0">
                     <children>
                        <Label alignment="CENTER_RIGHT" minHeight="25.0" minWidth="94.0" prefHeight="25.0" prefWidth="94.0" style="-fx-text-fill: black;" text="Statut de l'action" />
                        <ComboBox fx:id="statutActionComboBox" minHeight="25.0" minWidth="260.0" prefHeight="25.0" prefWidth="260.0" />
                     </children>
                     <GridPane.margin>
                        <Insets />
                     </GridPane.margin>
                     <padding>
                        <Insets bottom="5.0" top="5.0" />
                     </padding>
                  </HBox>
                  <HBox spacing="10.0" GridPane.rowIndex="1">
                     <children>
                        <Label alignment="CENTER_RIGHT" minHeight="25.0" minWidth="94.0" prefHeight="25.0" prefWidth="94.0" style="-fx-text-fill: black;" text="Date de début" />
                        <DatePicker fx:id="dateDebutDatePicker" minHeight="25.0" minWidth="260.0" prefHeight="25.0" prefWidth="260.0" />
                     </children>
                     <GridPane.margin>
                        <Insets />
                     </GridPane.margin>
                     <padding>
                        <Insets bottom="5.0" top="5.0" />
                     </padding>
                  </HBox>
                  <HBox spacing="10.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
                     <children>
                        <Label alignment="CENTER_RIGHT" minHeight="25.0" minWidth="115.0" prefHeight="25.0" prefWidth="115.0" style="-fx-text-fill: black;" text="Date de fin" />
                        <DatePicker fx:id="dateFinDatePicker" minHeight="25.0" minWidth="200.0" prefHeight="25.0" prefWidth="250.0" />
                     </children>
                     <GridPane.margin>
                        <Insets bottom="5.0" />
                     </GridPane.margin>
                     <padding>
                        <Insets bottom="5.0" />
                     </padding>
                  </HBox>
                  <HBox spacing="10.0" GridPane.rowIndex="2">
                     <children>
                        <Label alignment="CENTER_RIGHT" minHeight="25.0" minWidth="94.0" prefHeight="25.0" prefWidth="94.0" style="-fx-text-fill: black;" text="Fichier Source" />
                        <TextField fx:id="sourceFileNameTextField" minWidth="260.0" prefHeight="25.0" prefWidth="260.0" />
                     </children>
                     <GridPane.margin>
                        <Insets bottom="5.0" />
                     </GridPane.margin>
                     <padding>
                        <Insets top="5.0" />
                     </padding>
                  </HBox>
                  <HBox spacing="10.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
                     <children>
                        <Label alignment="CENTER_RIGHT" minHeight="25.0" minWidth="115.0" prefHeight="25.0" prefWidth="115.0" style="-fx-text-fill: black;" text="Fichier Destination" />
                        <TextField fx:id="destinationFileNameTextField" minWidth="200.0" prefHeight="25.0" prefWidth="200.0" />
                     </children>
                     <GridPane.margin>
                        <Insets bottom="5.0" />
                     </GridPane.margin>
                  </HBox>
               </children>
               <padding>
                  <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
               </padding>
               <VBox.margin>
                  <Insets />
               </VBox.margin>
            </GridPane>
         </children>
      </VBox>
   </children>
   <padding>
      <Insets top="5.0" />
   </padding>
</AnchorPane>