TableColumn

scalafx.scene.control.TableColumn
See theTableColumn companion class
object TableColumn

Attributes

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

Members list

Type members

Classlikes

class CellDataFeatures[S, T](val delegate: CellDataFeatures[S, T]) extends SFXDelegate[CellDataFeatures[S, T]]

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type
class CellEditEvent[S, T](val delegate: CellEditEvent[S, T]) extends Event, SFXDelegate[CellEditEvent[S, T]]

A TableView is made up of a number of TableColumn instances. Each TableColumn in a table is responsible for displaying (and editing) the contents of that column.

A TableView is made up of a number of TableColumn instances. Each TableColumn in a table is responsible for displaying (and editing) the contents of that column.

Wraps https://openjfx.io/javadoc/16/javafx.controls/javafx/scene/control/TableColumn.html.

Attributes

Companion
object
Supertypes
class Event
trait SFXDelegate[CellEditEvent[S, T]]
class Object
trait Matchable
class Any
object CellEditEvent

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type
sealed abstract class SortType(val delegate: SortType) extends SFXEnumDelegate[SortType]

Attributes

Companion
object
Supertypes
trait SFXEnumDelegate[SortType]
trait SFXDelegate[SortType]
class Object
trait Matchable
class Any
Known subtypes
object Ascending.type
object Descending.type
object SortType extends SFXEnumDelegateCompanion[SortType, SortType]

Attributes

Companion
class
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Show all
Self type
SortType.type

Value members

Concrete methods

def editAnyEvent: EventType[CellEditEvent[Nothing, Nothing]]

Parent event for any TableColumn edit event.

Parent event for any TableColumn edit event.

Attributes

def editCancelEvent: EventType[CellEditEvent[Nothing, Nothing]]

Indicates that the editing has been canceled, meaning that no change should be made to the backing data source.

Indicates that the editing has been canceled, meaning that no change should be made to the backing data source.

Attributes

def editCommitEvent: EventType[CellEditEvent[Nothing, Nothing]]

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.

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.

Attributes

def editStartEvent: EventType[CellEditEvent[Nothing, Nothing]]

Indicates that the user has performed some interaction to start an edit event, or alternatively the TableView.edit(Int, TableColumn) method has been called.

Indicates that the user has performed some interaction to start an edit event, or alternatively the TableView.edit(Int, TableColumn) method has been called.

Attributes

Concrete fields

If no cellFactory is specified on a TableColumn instance, then this one will be used by default.

If no cellFactory is specified on a TableColumn instance, then this one will be used by default.

Attributes

Deprecated fields

Attributes

Deprecated
true

Implicits

Implicits

implicit def sfxTableColumn2jfx[S, T](tc: TableColumn[S, T]): TableColumn[S, T]