Spec-Zone .ru
спецификации, руководства, описания, API
|
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 | Field and Description |
---|---|
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumn.DEFAULT_EDIT_COMMIT_HANDLER
*
Listeners *
*
|
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCancel |
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditCancel |
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCommit |
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditCommit |
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditStart |
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditStart |
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 |
---|---|
B |
TableColumnBuilder.onEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditStart property for the instance constructed by this builder. |
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 |
---|
TableColumn.CellEditEvent(TableView<S> table,
TablePosition<S,T> pos,
EventType<TableColumn.CellEditEvent> eventType,
T newValue)
Creates a new event that can be subsequently fired to the relevant listeners.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to