I\'m trying to develop auto complete text, which shows a dropdown of suggestions in tableview popup, and I\'m having an issue of how can I hide the whole header-column of ta
If you don't want to add additional .css file you may use your existing css:
.hide-header .column-header-background { visibility: hidden; -fx-padding: -1em; }
Where .hide-header is random name which you should add to your java code:
.hide-header
table.getStyleClass().add("hide-header");