TabulatorRemote
constructor(serviceManager: KVServiceMgr<E>, function: suspend E.(Int?, Int?, List<RemoteFilter>?, List<RemoteSorter>?, String?) -> RemoteData<T>, stateFunction: () -> String? = null, options: TabulatorOptions<T> = TabulatorOptions(), types: Set<TableType> = setOf(), className: String? = null, kClass: KClass<T>? = null, serializer: KSerializer<T>? = null, module: SerializersModule? = null, requestFilter: suspend RequestInit.() -> Unit? = null)(source)
Parameters
T
type of row data
E
type of service manager
serviceManager
fullstack service manager
function
fullstack service method returning tabulator rows data
stateFunction
a function to generate the state object passed with the remote request
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
requestFilter
a request filtering function