textFieldCellFactory

inline fun ListView<String>.textFieldCellFactory()

Sets a TextFieldListCell factory for use in this ListView.


inline fun <T> ListView<T>.textFieldCellFactory(converter: StringConverter<T>)

Sets a TextFieldListCell factory for use in this ListView.

Parameters

converter

A string converter that, given an object of type T, will return a String that can be used to represent the object visually.


inline fun <S> TableColumn<S, String>.textFieldCellFactory()

Sets a TextFieldTableCell factory for use in this TableColumn.


inline fun <S, T> TableColumn<S, T>.textFieldCellFactory(converter: StringConverter<T>)

Sets a TextFieldTableCell factory for use in this TableColumn.

Parameters

converter

A string converter that, given an object of type T, will return a String that can be used to represent the object visually.


inline fun TreeView<String>.textFieldCellFactory()

Sets a TextFieldTreeCell factory for use in this TreeView.


inline fun <T> TreeView<T>.textFieldCellFactory(converter: StringConverter<T>)

Sets a TextFieldTreeCell factory for use in this TreeView.

Parameters

converter

A string converter that, given an object of type T, will return a String that can be used to represent the object visually.


inline fun <S> TreeTableColumn<S, String>.textFieldCellFactory()

Sets a TextFieldTreeTableCell factory for use in this TreeTableColumn.


inline fun <S, T> TreeTableColumn<S, T>.textFieldCellFactory(converter: StringConverter<T>)

Sets a TextFieldTreeTableCell factory for use in this TreeTableColumn.

Parameters

converter

A string converter that, given an object of type T, will return a String that can be used to represent the object visually.