Uses of Class
javafx.scene.control.TableColumn.CellEditEvent
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.
|
-
Uses of TableColumn.CellEditEvent in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type TableColumn.CellEditEvent Modifier and Type Method Description static <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.EventHandler<TableColumn.CellEditEvent<S,T>>
TableColumn. getOnEditCancel()
Gets the value of the property onEditCancel.EventHandler<TableColumn.CellEditEvent<S,T>>
TableColumn. getOnEditCommit()
Gets the value of the property onEditCommit.EventHandler<TableColumn.CellEditEvent<S,T>>
TableColumn. getOnEditStart()
Gets the value of the property onEditStart.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
TableColumn. onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
TableColumn. onEditCommitProperty()
This event handler will be fired when the user successfully commits their editing.ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>>
TableColumn. onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.Method parameters in javafx.scene.control with type arguments of type TableColumn.CellEditEvent Modifier and Type Method Description void
TableColumn. setOnEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCancel.void
TableColumn. setOnEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditCommit.void
TableColumn. setOnEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> value)
Sets the value of the property onEditStart.Constructor parameters in javafx.scene.control with type arguments of type TableColumn.CellEditEvent Constructor Description CellEditEvent(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.