package test.scenegraph.app; import javafx.application.Application; import javafx.application.Platform; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.builders.DisplacementMapBuilder; import javafx.builders.RectangleBuilder; import javafx.builders.VBoxBuilder; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.geometry.HPos; import javafx.geometry.VPos; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.TextBox; import javafx.scene.effect.BlendMode; import javafx.scene.effect.DisplacementMap; import javafx.scene.effect.DropShadow; import javafx.scene.effect.FloatMap; import javafx.scene.layout.Pane; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.stage.Stage; import javafx.scene.effect.InnerShadow; import javafx.scene.layout.FlowPane; import javafx.scene.layout.GridPane; import javafx.scene.layout.RowConstraints; import javafx.scene.layout.StackPane; import javafx.scene.shape.Circle; import javafx.scene.shape.Rectangle; import javafx.scene.text.Text; import javafx.util.Callback; public class ShortAppWithoutDependencies511 extends Application { public static class Person { StringProperty firstName; private Person(String fName) { this.firstName = new SimpleStringProperty(fName); } public String getFirstName() { return firstName.get(); } public void setFirstName(String fName) { firstName.set(fName); } public StringProperty firstNameProperty() { if (firstName == null) { firstName = new SimpleStringProperty(); } return firstName; } } TableView table = new TableView(); final ObservableList data = FXCollections.observableArrayList( new Person("zzz"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("Jan"), new Person("zzz")); VBox hb = new VBox(); public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage stage) { Scene scene = new Scene(new Group(), 400, 400); stage.setTitle("Table View Sample"); final Label label = new Label("Address Book"); TableColumn firstNameCol = new TableColumn(); firstNameCol.setCellFactory(new Callback, TableCell>() { public TableCell call(TableColumn p) { return new EditingCell(); } }); firstNameCol.setText("1"); firstNameCol.setProperty("firstName"); table.setItems(data); table.getColumns().addAll(firstNameCol); final VBox vbox = new VBox(); vbox.setSpacing(5); vbox.getChildren().addAll(label, table, hb); ((Group) scene.getRoot()).getChildren().addAll(vbox); stage.setScene(scene); stage.setVisible(true); } class EditingCell extends TableCell { private final Label label; private TextBox textBox = new TextBox(); public EditingCell() { this.label = new Label(); } @Override public void cancelEdit() { hb.getChildren().add(new Text("cancelEdit() item:" + textBox.getText() + "/"+ label.getText())); // super.cancelEdit(); // setNode(label); } @Override public void updateItem(String item, boolean empty) { super.updateItem(item, empty); if (!isEmpty()) { if (textBox != null) { textBox.setText(item); } label.setText(item); //setNode(label); setText(item); } } } }