I am trying to remove the grid line inside table view of each cell using css.
For example, between the Name and Description column, there is a line which I assumed that it is grid line. I have no idea to remove it using css. I can do it in Java Swing using setShowGrid(false); but this does not available in javaFX.
I assume you're asking about JavaFX 2. If not, I suggest you upgrade :)
Try putting this in your stylesheet:
Or call
In order to keep horizontal lines, I had to do the following
There's probably a better way to do this, but this worked for me...
to remove grid line in tableView what @kylejmcintyre said is true.
to hide the table header do this: