TextFieldTreeCell

scalafx.scene.control.cell.TextFieldTreeCell
See theTextFieldTreeCell companion class

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

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.

Attributes

Returns

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

def forTreeView[T](converter: StringConverter[T]): TreeView[T] => TreeCell[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 parameters

converter

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

Attributes

Returns

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

Deprecated methods

def forTreeView[T](converter: StringConverter[T]): Callback[TreeView[T], TreeCell[T]]

Added to satisfy Spec tests.

Added to satisfy Spec tests.

Attributes

Deprecated
[Since version 1.0] Use forTreeView[T](StringConverter[T])

Implicits

Implicits

implicit def sfxTextFieldTreeCell2jfx[T](cell: TextFieldTreeCell[T]): TextFieldTreeCell[T]

Converts a ScalaFX TextFieldTreeCell to its JavaFX counterpart.

Converts a ScalaFX TextFieldTreeCell to its JavaFX counterpart.

Type parameters

T

The type of the elements contained within the ListView.

Value parameters

cell

ScalaFX TextFieldTreeCell

Attributes

Returns

JavaFX TextFieldTreeCell