Remove extra column in JavaFX TableView
Everytime you create a JavaFX TableView that has n columns when you run the program it will display n + 1 columns. The last column being empty… To remove TableView’s extra column Simply add below statement to your table: Full java code: Final result: You might want to read: Create Hyperlink cell in JavaFX TableView … Read more