-2

I need to get all values from JFX Table View. Tell me to way for that. it's very important to me. below has that table.

enter image description here

flaxel
  • 4,173
  • 4
  • 17
  • 30
Danuja
  • 81
  • 1
  • 1
  • 7

1 Answers1

0

If you want to get all items in the TableView you can use the getItems method. Otherwise if you want only the selected data, you can use a SelectionModel to get the selected item.

flaxel
  • 4,173
  • 4
  • 17
  • 30