Updating TableView row appearance
问题 I'm having some dificulties to change the appearance of some TableView rows. The line should show the text with a stroke and in red. Actually, I can show it in red color but still can't do the stroke. This is the css class I'm using to change the appearance of the line: .itemCancelado { -fx-strikethrough: true; -fx-text-fill: red; } This style class is added when the user mark the item as canceled: public class ItemCanceladoCellFactory implements Callback<TableColumn, TableCell> { @Override