Uses of Class
javafx.scene.control.ListView.EditEvent
Packages that use ListView.EditEvent
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 ListView.EditEvent in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type ListView.EditEventModifier and TypeMethodDescriptionstatic <T> EventType<ListView.EditEvent<T>>
ListView.editAnyEvent()
An EventType that indicates some edit event has occurred.static <T> EventType<ListView.EditEvent<T>>
ListView.editCancelEvent()
An EventType used to indicate that an edit event has just been canceled within the ListView upon which the event was fired.static <T> EventType<ListView.EditEvent<T>>
ListView.editCommitEvent()
An EventType used to indicate that an edit event has been committed within the ListView upon which the event was fired.static <T> EventType<ListView.EditEvent<T>>
ListView.editStartEvent()
An EventType used to indicate that an edit event has started within the ListView upon which the event was fired.ListView.getOnEditCancel()
Returns theEventHandler
that will be called when the user cancels an edit.ListView.getOnEditCommit()
Returns theEventHandler
that will be called when the user commits an edit.ListView.getOnEditStart()
Returns theEventHandler
that will be called when the user begins an edit.ListView.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.ListView.onEditCommitProperty()
This property is used when the user performs an action that should result in their editing input being persisted.ListView.onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.Method parameters in javafx.scene.control with type arguments of type ListView.EditEventModifier and TypeMethodDescriptionvoid
ListView.setOnEditCancel(EventHandler<ListView.EditEvent<T>> value)
Sets theEventHandler
that will be called when the user cancels an edit.void
ListView.setOnEditCommit(EventHandler<ListView.EditEvent<T>> value)
Sets theEventHandler
that will be called when the user has completed their editing.void
ListView.setOnEditStart(EventHandler<ListView.EditEvent<T>> value)
Sets theEventHandler
that will be called when the user begins an edit.Constructor parameters in javafx.scene.control with type arguments of type ListView.EditEvent