Tabulator
constructor(data: List<T>? = null, dataUpdateOnEdit: Boolean = true, options: TabulatorOptions<T> = TabulatorOptions(), types: Set<TableType> = setOf(), className: String? = null, kClass: KClass<T>? = null, serializer: KSerializer<T>? = null, module: SerializersModule? = null)(source)
Parameters
T
type
data
a list of objects
dataUpdateOnEdit
determines if the data model is automatically updated after tabulator edit action
options
tabulator options
types
a set of table types
className
CSS class names
kClass
Kotlin class
serializer
the serializer for type T
module
optional serialization module with custom serializers