Cannot get border to differ from side-to-side or up-and-down in TableCell javafx 2
Emily Wong
I am trying to create a schedule interface within javafx 2+, and I am having trouble getting the TableView to contain TableCells that look like conjoined components.
The first thing that I tried was to use background colors and borders, however, I cannot get the borders to differ between the top and bottom.
-fx-border-width: 1px, 0px, 0px, 0px; for top
-fx-border-width: 0px, 0px, 1px, 0px; for the bottom
Ideally I would be able to span columns or rows, but I understand that it does not fit the model of the control. Any help is greatly appreciated.
1 Answer
Just remove commas from your code. E.g.:
-fx-border-width: 1 2 3 4; -fx-border-color: red blue green yellow; 4