-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestView.fxml
More file actions
18 lines (15 loc) · 1.12 KB
/
Copy pathTestView.fxml
File metadata and controls
18 lines (15 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.HBox?>
<?import control.SearchableTextField?>
<HBox spacing="10.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.TestController">
<children>
<TextField fx:id="txt" promptText="Normal Text Field" />
<SearchableTextField fx:id="traderSearchableTextField" displayField="userFirstName" promptText="Type to filter Traders" referenceDataFxmlPath="/view/TraderReferenceDataTableView" userData="IctsUser"/>
<SearchableTextField fx:id="uomSearchableTextField" displayField="uomShortName" promptText="Type to filter Uoms" referenceDataFxmlPath="/view/UomReferenceDataTableView" userData="Uom"/>
<SearchableTextField fx:id="commoditySearchableTextField" displayField="cmdtyShortName" promptText="Type to filter Commodities" referenceDataFxmlPath="/view/CommodityReferenceDataTableView" userData="Commodity"/>
</children>
<padding><Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /></padding>
</HBox>