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 | Method and Description |
---|---|
static <S,T> EventType<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.editAnyEvent()
Parent event for any TreeTableColumn edit event.
|
static <S,T> EventType<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.editCancelEvent()
Indicates that the editing has been canceled, meaning that no change should
be made to the backing data source.
|
static <S,T> EventType<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.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.
|
static <S,T> EventType<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.editStartEvent()
Indicates that the user has performed some interaction to start an edit
event, or alternatively the
TreeTableView.edit(int, javafx.scene.control.TreeTableColumn)
method has been called. |
EventHandler<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.getOnEditCancel()
Gets the value of the property onEditCancel.
|
EventHandler<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.getOnEditCommit()
Gets the value of the property onEditCommit.
|
EventHandler<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.getOnEditStart()
Gets the value of the property onEditStart.
|
ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditCommitProperty()
This event handler will be fired when the user successfully commits their
editing.
|
ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditStartProperty()
This event handler will be fired when the user successfully initiates
editing.
|
Modifier and Type | Method and Description |
---|---|
void |
TreeTableColumn.setOnEditCancel(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCancel.
|
void |
TreeTableColumn.setOnEditCommit(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCommit.
|
void |
TreeTableColumn.setOnEditStart(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditStart.
|
Constructor and Description |
---|
CellEditEvent(TreeTableView<S> table,
TreeTablePosition<S,T> pos,
EventType<TreeTableColumn.CellEditEvent<S,T>> eventType,
T newValue)
Creates a new event that can be subsequently fired to the relevant listeners.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2019, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.