TableInteractions

Interface for handling interactions with table components. Implementations of this interface should provide specific logic for each interaction.

Functions

Link copied to clipboard
open fun onClick(tableCell: TableCell)

Called when a table cell is clicked.

Link copied to clipboard
open fun onDecorationClick(dialogModel: TableDialogModel)

Called when a decoration is clicked.

Link copied to clipboard
open fun onOptionSelected(cell: TableCell, code: String, label: String)

Called when an option is selected in a table cell.

Link copied to clipboard
open fun onSelectionChange(newTableSelection: TableSelection)

Called when the table selection changes.