Uses of Class
javafx.scene.control.TableColumn.CellEditEvent
Package
Description
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.
-
Uses of TableColumn.CellEditEvent in javafx.scene.control
Modifier and TypeMethodDescriptionstatic <S,
T> EventType<TableColumn.CellEditEvent<S, T>> TableColumn.editAnyEvent()
Parent event for any TableColumn edit event.static <S,
T> EventType<TableColumn.CellEditEvent<S, T>> TableColumn.editCancelEvent()
Indicates that the editing has been canceled, meaning that no change should be made to the backing data source.static <S,
T> EventType<TableColumn.CellEditEvent<S, T>> TableColumn.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<TableColumn.CellEditEvent<S, T>> TableColumn.editStartEvent()
Indicates that the user has performed some interaction to start an edit event, or alternatively theTableView.edit(int, javafx.scene.control.TableColumn)
method has been called.final EventHandler<TableColumn.CellEditEvent<S,
T>> TableColumn.getOnEditCancel()
Gets the value of the property onEditCancel.final EventHandler<TableColumn.CellEditEvent<S,
T>> TableColumn.getOnEditCommit()
Gets the value of the property onEditCommit.final EventHandler<TableColumn.CellEditEvent<S,
T>> TableColumn.getOnEditStart()
Gets the value of the property onEditStart.TableColumn.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.TableColumn.onEditCommitProperty()
This event handler will be fired when the user successfully commits their editing.TableColumn.onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.Modifier and TypeMethodDescriptionfinal void
TableColumn.setOnEditCancel
(EventHandler<TableColumn.CellEditEvent<S, T>> value) Sets the value of the property onEditCancel.final void
TableColumn.setOnEditCommit
(EventHandler<TableColumn.CellEditEvent<S, T>> value) Sets the value of the property onEditCommit.final void
TableColumn.setOnEditStart
(EventHandler<TableColumn.CellEditEvent<S, T>> value) Sets the value of the property onEditStart.ModifierConstructorDescriptionCellEditEvent
(TableView<S> table, TablePosition<S, T> pos, EventType<TableColumn.CellEditEvent<S, T>> eventType, T newValue) Creates a new event that can be subsequently fired to the relevant listeners.