static <T> EventType<TreeView.EditEvent<T>> |
TreeView.editAnyEvent() |
An EventType that indicates some edit event has occurred.
|
static <T> EventType<TreeView.EditEvent<T>> |
TreeView.editCancelEvent() |
An EventType used to indicate that an edit event has just been canceled
within the TreeView upon which the event was fired.
|
static <T> EventType<TreeView.EditEvent<T>> |
TreeView.editCommitEvent() |
An EventType that is used to indicate that an edit in a TreeView has been
committed.
|
static <T> EventType<TreeView.EditEvent<T>> |
TreeView.editStartEvent() |
An EventType used to indicate that an edit event has started within the
TreeView upon which the event was fired.
|
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditCancel() |
Returns the EventHandler that will be called when the user cancels
an edit.
|
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditCommit() |
Returns the EventHandler that will be called when the user commits
an edit.
|
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditStart() |
Returns the EventHandler that will be called when the user begins
an edit.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCancelProperty() |
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCommitProperty() |
This property is used when the user performs an action that should
result in their editing input being persisted.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditStartProperty() |
This event handler will be fired when the user successfully initiates
editing.
|