I am trying to create a schedule interface in javafx 2+, and I am unable to get the TableView to contain TableCells that look like combined components.
The first thing I tried was to use the background and border colors, however I cannot get borders to distinguish between top and bottom.
-fx-border-width: 1px, 0px, 0px, 0px; for the top
-fx-border-width: 0px, 0px, 1px, 0px; for bottom
Ideally, I could use columns or rows, but I understand that it does not match the model of the control. Any help is appreciated.
css javafx-2 tableview tablecell
user1352550
source share