Package | Description |
---|---|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
Modifier and Type | Field and Description |
---|---|
static EventType<SortEvent> |
SortEvent.ANY
Common supertype for all sort event types.
|
private ObjectProperty<EventHandler<SortEvent<TableView<S>>>> |
TableView.onSort
Called when there's a request to sort the control.
|
private ObjectProperty<EventHandler<SortEvent<TreeTableView<S>>>> |
TreeTableView.onSort
Called when there's a request to sort the control.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<SortEvent<TableView<S>>> |
TableView.getOnSort() |
EventHandler<SortEvent<TreeTableView<S>>> |
TreeTableView.getOnSort() |
ObjectProperty<EventHandler<SortEvent<TableView<S>>>> |
TableView.onSortProperty() |
ObjectProperty<EventHandler<SortEvent<TreeTableView<S>>>> |
TreeTableView.onSortProperty() |
static <C> EventType<SortEvent<C>> |
SortEvent.sortEvent() |
Modifier and Type | Method and Description |
---|---|
void |
TableView.setOnSort(EventHandler<SortEvent<TableView<S>>> value) |
void |
TreeTableView.setOnSort(EventHandler<SortEvent<TreeTableView<S>>> value) |