import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import javafx.scene.control.TableColumnBuilder; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.Region; import javafx.scene.layout.VBox; import javafx.stage.Stage; import javafx.util.Callback; public class Bug extends Application { public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage primaryStage) { JobList jobsHistoryList = new JobList(jobsHistory, "Jobs History"); Scene scene = new Scene(jobsHistoryList); scene.getStylesheets().add(getClass().getResource("Bug.css").toString()); primaryStage.setScene(scene); primaryStage.show(); } public static class Job { private StringProperty title; private StringProperty status; public Job(String title, String status) { this.title = new SimpleStringProperty(title); this.status = new SimpleStringProperty(status); } public StringProperty statusProperty() { return status; } public StringProperty titleProperty() { return title; } } private ObservableList jobsHistory = FXCollections.observableArrayList( new Job("John Jackson CV", "completed"), new Job("My Doc 2", "canceled"), new Job("Copy 7 pages", "completed"), new Job("Scan and publish", "completed") ); class JobList extends Region { private TableView tableView; public JobList(ObservableList jobs, String title) { tableView = new TableView(); tableView.setItems(jobs); tableView.getColumns().addAll( TableColumnBuilder.create() .text(title) .cellValueFactory(new PropertyValueFactory("title")) .build(), TableColumnBuilder.create() .cellFactory(new Callback, TableCell>() { @Override public TableCell call(TableColumn arg0) { final TableCell tableCell = new TableCell(); tableCell.textProperty().bind(tableCell.itemProperty()); tableCell.itemProperty().addListener(new ChangeListener() { @Override public void changed(ObservableValue arg0, String arg1, String arg2) { tableCell.getStyleClass().remove(arg1); tableCell.getStyleClass().add(arg2); } }); return tableCell; } }) .cellValueFactory(new PropertyValueFactory("status")) .build() ); tableView.prefHeightProperty().bindBidirectional(prefHeightProperty()); tableView.prefWidthProperty().bindBidirectional(prefWidthProperty()); tableView.minHeightProperty().bindBidirectional(minHeightProperty()); tableView.minWidthProperty().bindBidirectional(minWidthProperty()); tableView.maxHeightProperty().bindBidirectional(maxHeightProperty()); tableView.maxWidthProperty().bindBidirectional(maxWidthProperty()); getChildren().setAll( tableView); } } }