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<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 the
TableView.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.
|
Modifier and Type | Method and 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 and 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.
|
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, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.