Example usage for Java javafx.scene.control TableColumn fields, constructors, methods, implement or subclass
The text is from its open source code.
TableColumn(String text) Creates a TableColumn with the text set to the provided string, with default cell factory, comparator, and onEditCommit implementation. | |
TableColumn() Creates a default TableColumn with default cell factory, comparator, and onEditCommit implementation. |
ObjectProperty | cellValueFactoryProperty() |
EventType | editCommitEvent() Indicates that the editing has been committed by the user, meaning that a change should be made to the backing data source to reflect the new data. |
Callback | getCellFactory() |
ObservableValue | getCellObservableValue(int index) |
ObservableValue | getCellObservableValue(S item) |
Callback | getCellValueFactory() |
ObservableList | getColumns() |
SortType | getSortType() |
void | setCellFactory(Callback |
void | setCellValueFactory(Callback |
void | setOnEditCommit(EventHandler |
void | setSortType(SortType value) |