OptionsContext

class OptionsContext<T>

This context class integrates the configuration and the DSL for some general and optional properties.

The following aspects can be configured:

  • different customizations related to sorting functionalities (SortingContext)

  • the hovering effect

  • width and heights properties, including the maximum values for the whole table

  • width and max width for a cell

Constructors

Link copied to clipboard
fun OptionsContext()

Types

Link copied to clipboard
class HoveringContext<T>
Link copied to clipboard
class SortingContext<T>

Functions

Link copied to clipboard
fun hovering(value: OptionsContext.HoveringContext<T>.() -> Unit)
Link copied to clipboard
fun sorting(value: OptionsContext.SortingContext<T>.() -> Unit)

Properties

Link copied to clipboard
val cellMaxWidth: ComponentProperty<Property>
Link copied to clipboard
val cellMinWidth: ComponentProperty<Property>
Link copied to clipboard
val height: ComponentProperty<Property?>
Link copied to clipboard
Link copied to clipboard
val maxHeight: ComponentProperty<Property?>
Link copied to clipboard
val maxWidth: ComponentProperty<Property?>
Link copied to clipboard
val sorting: ComponentProperty<OptionsContext.SortingContext<T>>
Link copied to clipboard
val width: ComponentProperty<Property?>