TableView

scalafx.scene.control.TableView
See theTableView companion class
object TableView

$OBJCOMPSTA$TV$OBJCOMPEND

Attributes

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

Members list

Type members

Classlikes

class ResizeFeatures[S](val delegate: ResizeFeatures[S]) extends ResizeFeaturesBase[S], SFXDelegate[ResizeFeatures[S]]

Wraps a JavaFX ResizeFeatures.

Wraps a JavaFX ResizeFeatures.

Value parameters

delegate

JavaFX ResizeFeatures to be wrapped.

Attributes

Constructor

Creates a new ScalaFX ResizeFeatures from its JavaFX counterpart.

Companion
object
Supertypes
trait SFXDelegate[ResizeFeatures[S]]
class Object
trait Matchable
class Any

Object companion for scalafx.scene.controlTableView.ResizeFeatures.

Object companion for scalafx.scene.controlTableView.ResizeFeatures.

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type
class TableViewFocusModel[S](val delegate: TableViewFocusModel[S]) extends TableFocusModel[S, TableColumn[S, _]], SFXDelegate[TableViewFocusModel[S]]

Wraps a JavaFX TableViewFocusModel.

Wraps a JavaFX TableViewFocusModel.

Value parameters

delegate

JavaFX TableViewFocusModel to be wrapped.

Attributes

Constructor

Creates a new ScalaFX TableViewFocusModel from its JavaFX counterpart.

Companion
object
Supertypes
class TableFocusModel[S, TableColumn[S, _]]
class FocusModel[S]
trait SFXDelegate[TableViewFocusModel[S]]
class Object
trait Matchable
class Any
Show all

Object companion for scalafx.scene.controlTableView.TableViewFocusModel.

Object companion for scalafx.scene.controlTableView.TableViewFocusModel.

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type
abstract class TableViewSelectionModel[S](val delegate: TableViewSelectionModel[S]) extends TableSelectionModel[S], SFXDelegate[TableViewSelectionModel[S]]

Wraps a JavaFX TableViewSelectionModel.

Wraps a JavaFX TableViewSelectionModel.

Value parameters

delegate

JavaFX TableViewSelectionModel to be wrapped.

Attributes

Constructor

Creates a new ScalaFX TableViewSelectionModel from its JavaFX counterpart.

Companion
object
Supertypes
class SelectionModel[S]
trait SFXDelegate[TableViewSelectionModel[S]]
class Object
trait Matchable
class Any
Show all

Object companion for scalafx.scene.controlTableView.TableViewSelectionModel.

Object companion for scalafx.scene.controlTableView.TableViewSelectionModel.

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type

Value members

Concrete fields

val ConstrainedResizePolicy: Callback[ResizeFeatures[_], Boolean]

Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself. When the user resizes a column width with this policy, the table automatically adjusts the width of the right hand side columns. When the user increases a column width, the table decreases the width of the rightmost column until it reaches its minimum width. Then it decreases the width of the second rightmost column until it reaches minimum width and so on. When all right hand side columns reach minimum size, the user cannot increase the size of resized column any more.

Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself. When the user resizes a column width with this policy, the table automatically adjusts the width of the right hand side columns. When the user increases a column width, the table decreases the width of the rightmost column until it reaches its minimum width. Then it decreases the width of the second rightmost column until it reaches minimum width and so on. When all right hand side columns reach minimum size, the user cannot increase the size of resized column any more.

It delegates to JavaFX CONSTRAINED_RESIZE_POLICY

Attributes

val UnconstrainedResizePolicy: Callback[ResizeFeatures[_], Boolean]

Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).

Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).

It delegates to JavaFX UNCONSTRAINED_RESIZE_POLICY

Attributes

Implicits

Implicits

implicit def sfxTableView2jfx[S](tv: TableView[S]): TableView[S]

Converts a ScalaFX TableView instance to its JavaFX counterpart.

Converts a ScalaFX TableView instance to its JavaFX counterpart.

Value parameters

tv

ScalaFX TableView

Attributes

Returns

JavaFX TableView