Example usage for Java javafx.scene.control TableView fields, constructors, methods, implement or subclass
The text is from its open source code.
Callback | CONSTRAINED_RESIZE_POLICY Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself. |
TableView() Creates a default TableView control with no content. | |
TableView(ObservableList Creates a TableView with the content provided in the items ObservableList. |
ReadOnlyObjectProperty | comparatorProperty() |
BooleanProperty | editableProperty() Specifies whether this TableView is editable - only if the TableView, the TableColumn (if applicable) and the TableCells within it are both editable will a TableCell be able to go into their editing state. |
ObjectProperty | focusModelProperty() Represents the currently-installed TableViewFocusModel for this TableView. |
ObservableList | getColumns() The TableColumns that are part of this TableView. |
ObservableList | getItems() |
double | getPrefWidth() |
TableViewSelectionModel | getSelectionModel() |
ObservableList | getSortOrder() The sortOrder list defines the order in which TableColumn instances are sorted. |
ObjectProperty | itemsProperty() The underlying data model for the TableView. |
void | scrollTo(int index) Scrolls the TableView so that the given index is visible within the viewport. |
void | scrollTo(S object) Scrolls the TableView so that the given object is visible within the viewport. |
void | setColumnResizePolicy(Callback |
void | setContextMenu(ContextMenu value) |
void | setEditable(boolean value) |
void | setItems(ObservableList |
void | setPlaceholder(Node value) |
void | setPrefHeight(double value) |
void | setPrefWidth(double value) |
void | setRowFactory(Callback |
void | setTooltip(Tooltip value) |