Hi everyone,
I am new to javafx, I created a code similar to this tutorial:
http://docs.oracle.com/javafx/2/ui_controls/table-view.htm
Question: How to display the data from TableView?
Example: I want to display the cell value from row1-column1 to row3-column1.
System.out.println(table-column1-row1);
System.out.println(table-column1-row2);
System.out.prinlnt(table-column1-row3);
What would be the codes? Please help me.