TableSelectionModel

class TableSelectionModel[T](val delegate: TableSelectionModel[T]) extends MultipleSelectionModel[T] with SFXDelegate[TableSelectionModel[T]]

Wraps JavaFX TableSelectionModel.

Wraps JavaFX TableSelectionModel.

Type Params
T

The type of the underlying data model for the UI control.

Value Params
delegate

JavaFX TableSelectionModel

Constructor

creates a new ScalaFX TableSelectionModel from a JavaFX one.

Since

8.0

Companion
object
trait SFXDelegate[TableSelectionModel[T]]
class Object
trait Matchable
class Any

Value members

Concrete methods

A boolean property used to represent whether the TableView is in row or cell selection modes.

A boolean property used to represent whether the TableView is in row or cell selection modes.

def cellSelectionEnabled_=(v: Boolean): Unit
def clearAndSelect(row: Int, column: TableColumnBase[T, _]): Unit

Clears all selection, and then selects the cell at the given row/column intersection.

Clears all selection, and then selects the cell at the given row/column intersection.

def clearSelection(row: Int, column: TableColumnBase[T, _]): Unit

Removes selection from the specified row/column position (in view indexes).

Removes selection from the specified row/column position (in view indexes).

def isSelected(row: Int, column: TableColumnBase[T, _]): Boolean

Convenience function which tests whether the given row and column index is currently selected in this TableView instance.

Convenience function which tests whether the given row and column index is currently selected in this TableView instance.

def select(row: Int, column: TableColumnBase[T, _]): Unit

Selects the cell at the given row/column intersection.

Selects the cell at the given row/column intersection.

def selectAboveCell(): Unit

Selects the cell directly above the currently selected cell.

Selects the cell directly above the currently selected cell.

def selectBelowCell(): Unit

Selects the cell directly below the currently selected cell.

Selects the cell directly below the currently selected cell.

def selectLeftCell(): Unit

Selects the cell to the left of the currently selected cell.

Selects the cell to the left of the currently selected cell.

def selectRange(minRow: Int, minColumn: TableColumnBase[T, _], maxRow: Int, maxColumn: TableColumnBase[T, _]): Unit

Selects the cells in the range (minRow, minColumn) to (maxRow, maxColumn), inclusive.

Selects the cells in the range (minRow, minColumn) to (maxRow, maxColumn), inclusive.

def selectRightCell(): Unit

Selects the cell to the right of the currently selected cell.

Selects the cell to the right of the currently selected cell.

Inherited methods

def clearAndSelect(index: Int): Unit

A method that clears any selection prior to setting the selection to the given index.

A method that clears any selection prior to setting the selection to the given index.

Inherited from
SelectionModel
def clearSelection(index: Int): Unit

This method will clear the selection of the item in the given index.

This method will clear the selection of the item in the given index.

Inherited from
SelectionModel
def clearSelection(): Unit

Clears the selection model of all selected indices.

Clears the selection model of all selected indices.

Inherited from
SelectionModel
override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
def isEmpty: Boolean

This method is available to test whether there are any selected indices/items.

This method is available to test whether there are any selected indices/items.

Inherited from
SelectionModel
def isSelected(index: Int): Boolean

Convenience method to inform if the given index is currently selected in this SelectionModel.

Convenience method to inform if the given index is currently selected in this SelectionModel.

Inherited from
SelectionModel
def select(obj: T): Unit

This method will attempt to select the index that contains the given object.

This method will attempt to select the index that contains the given object.

Inherited from
SelectionModel
def select(index: Int): Unit

This will select the given index in the selection model, assuming the index is within the valid range (i.e.

This will select the given index in the selection model, assuming the index is within the valid range (i.e.

Inherited from
SelectionModel
def selectAll(): Unit

Convenience method to select all available indices.

Convenience method to select all available indices.

Inherited from
MultipleSelectionModel
def selectFirst(): Unit

This method will attempt to select the first index in the control.

This method will attempt to select the first index in the control.

Inherited from
SelectionModel
def selectIndices(index: Int, indices: Int*): Unit

This method allows for one or more selections to be set at the same time. It will ignore any value that is not within the valid range (i.e. greater than or equal to zero, and less than the total number of items in the underlying data model). Any duplication of indices will be ignored.

This method allows for one or more selections to be set at the same time. It will ignore any value that is not within the valid range (i.e. greater than or equal to zero, and less than the total number of items in the underlying data model). Any duplication of indices will be ignored.

If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call clearSelection.

The last valid value given will become the selected index / selected item.

Inherited from
MultipleSelectionModel
def selectLast(): Unit

This method will attempt to select the last index in the control.

This method will attempt to select the last index in the control.

Inherited from
SelectionModel
def selectNext(): Unit

This method will attempt to select the index directly after the current focused index.

This method will attempt to select the index directly after the current focused index.

Inherited from
SelectionModel
def selectPrevious(): Unit

This method will attempt to select the index directly before the current focused index.

This method will attempt to select the index directly before the current focused index.

Inherited from
SelectionModel
def selectRange(start: Int, end: Int): Unit

Selects all indices from the given start index to the item before the given end index. This means that the selection is inclusive of the start index, and exclusive of the end index. This method will work regardless of whether start < end or start > end: the only constant is that the index before the given end index will become the selected index.

Selects all indices from the given start index to the item before the given end index. This means that the selection is inclusive of the start index, and exclusive of the end index. This method will work regardless of whether start < end or start > end: the only constant is that the index before the given end index will become the selected index.

If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call clearSelection.

Value Params
end

The last index of the selection - this index will not be selected.

start

The first index to select - this index will be selected.

Inherited from
MultipleSelectionModel

Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.

Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.

Inherited from
SelectionModel

Returns a read-only ObservableList of all selected indices. The ObservableList will be updated by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

Returns a read-only ObservableList of all selected indices. The ObservableList will be updated by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

Inherited from
MultipleSelectionModel

Refers to the selected item property, which is used to indicate the currently selected item in the selection model.

Refers to the selected item property, which is used to indicate the currently selected item in the selection model.

Inherited from
SelectionModel

Returns a read-only ObservableList of all selected items. The ObservableList will be updated further by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

Returns a read-only ObservableList of all selected items. The ObservableList will be updated further by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

Inherited from
MultipleSelectionModel
def selectionMode: ObjectProperty[SelectionMode]

Specifies the selection mode to use in this selection model. The selection mode specifies how many items in the underlying data model can be selected at any one time.

Specifies the selection mode to use in this selection model. The selection mode specifies how many items in the underlying data model can be selected at any one time.

By default, the selection mode is SelectionMode.SINGLE.

Inherited from
MultipleSelectionModel
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: TableSelectionModel[T]