TextFieldTreeTableCell

class Object
trait Matchable
class Any

Value members

Concrete methods

def forTreeTableColumn[S](): TreeTableColumn[S, String] => TreeTableCell[S, String]

Provides a `TextField that allows editing of the cell content when the cell is double-clicked, or when TreeView.edit(javafx.scene.control.TreeItem) is called.

Provides a `TextField that allows editing of the cell content when the cell is double-clicked, or when TreeView.edit(javafx.scene.control.TreeItem) is called.

Returns

A Function that can be inserted into the cell factory property of a TreeView, that enables textual editing of the content.

def forTreeTableColumn[S, T](converter: StringConverter[T]): TreeTableColumn[S, T] => TreeTableCell[S, T]

Provides a `TextField that allows editing of the cell content when the cell is double-clicked, or when TreeView.edit(javafx.scene.control.TreeItem) is called.

Provides a `TextField that allows editing of the cell content when the cell is double-clicked, or when TreeView.edit(javafx.scene.control.TreeItem) is called.

Value Params
converter

A StringConverter that can convert the given String (from what the user typed in) into an instance of type T.

Returns

A Function that can be inserted into the cell factory property of a TreeView, that enables textual editing of the content.

Deprecated methods

@deprecated(message = "Use forTreeTableColumn[S, T](StringConverter[T])", since = "1.0")
def forTreeTableColumn[S, T](converter: StringConverter[T]): Callback[TreeTableColumn[S, T], TreeTableCell[S, T]]

Added to satisfy Spec tests.

Added to satisfy Spec tests.

Deprecated
[Since version 1.0] Use forTreeTableColumn[S, T](StringConverter[T])

Implicits

Implicits

implicit def sfxTextFieldTreeTableCell2jfx[S, T](cell: TextFieldTreeTableCell[S, T]): TextFieldTreeTableCell[S, T]

Converts a ScalaFX TextFieldTreeTableCell to its JavaFX counterpart.

Converts a ScalaFX TextFieldTreeTableCell to its JavaFX counterpart.

Type Params
T

The type of the elements contained within the ListView.

Value Params
cell

ScalaFX TextFieldTreeTableCell

Returns

JavaFX TextFieldTreeTableCell