Tabulator

fun <T : Any> Tabulator(    data: List<T>? = null,     dataUpdateOnEdit: Boolean = true,     options: TabulatorOptions<T> = TabulatorOptions(),     types: Set<TableType> = setOf(),     className: String? = null,     kClass: KClass<T>? = null,     serializer: <ERROR CLASS><T>? = null,     module: <ERROR CLASS>? = null)

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