Created
October 9, 2013 23:55
-
-
Save incepttechnologies/6910660 to your computer and use it in GitHub Desktop.
TableView: fxml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TableView fx:id="personView" layoutX="110.0" layoutY="71.0" prefHeight="136.0" prefWidth="334.0"> | |
<columns> | |
<TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="116.0" resizable="true" fx:id="personViewIdCol" /> | |
<TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="124.0" resizable="true" text="Name" fx:id="personViewNameCol" /> | |
<TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="93.0" resizable="true" text="Age" fx:id="personViewAgeCol" /> | |
</columns> | |
</TableView> | |
<HBox layoutX="131.0" layoutY="283.0" prefHeight="64.0" prefWidth="306.0" /> | |
<Label layoutX="91.0" layoutY="229.0" text="ID" /> | |
<TextField fx:id="idTxt" layoutX="110.0" layoutY="229.0" prefWidth="67.0" /> | |
<Label layoutX="198.0" layoutY="232.0" prefWidth="42.0" text="Name" /> | |
<TextField fx:id="nameTxt" layoutX="232.0" layoutY="229.0" prefWidth="80.0" /> | |
<Label layoutX="334.0" layoutY="232.0" text="Age" /> | |
<TextField fx:id="ageTxt" layoutX="362.0" layoutY="229.0" prefWidth="73.0" /> | |
<Button fx:id="save" layoutX="456.0" layoutY="232.0" mnemonicParsing="false" text="Add" textFill="#0052cc" textOverrun="CLIP" /> | |
<Pagination fx:id="pagination" layoutX="110.0" layoutY="274.0" prefHeight="65.0" prefWidth="334.0" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment