Advertisement
Pagoniusz

Untitled

Apr 16th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <TableView fx:id="studentTable" layoutX="14.0" layoutY="38.0" prefHeight="262.0" prefWidth="428.0">
  2. <columns>
  3. <TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="156.0" text="First name" fx:id="firstNameColumn">
  4. <cellValueFactory>
  5. <PropertyValueFactory property="firstname" />
  6. </cellValueFactory>
  7. </TableColumn>
  8. <TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="144.0" text="Last name" fx:id="lastNameColumn">
  9. <cellValueFactory>
  10. <PropertyValueFactory property="lastname" />
  11. </cellValueFactory>
  12. </TableColumn>
  13.  
  14. <TableColumn maxWidth="5000.0" minWidth="10.0" prefWidth="126.0" text="Department" fx:id="departmentColumn">
  15.  
  16. <cellValueFactory>
  17. <PropertyValueFactory property="shortcut" />
  18. </cellValueFactory>
  19. </TableColumn>
  20. </columns>
  21. </TableView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement