Cannot get border to differ from side-to-side or up-and-down in TableCell javafx 2

user1352550 picture user1352550 · Apr 24, 2012 · Viewed 19.7k times · Source

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.

Answer

Sergey Grinev picture Sergey Grinev · Apr 26, 2012

Just remove commas from your code. E.g.:

-fx-border-width: 1 2 3 4; -fx-border-color: red blue green yellow;