dataCollectionSortButton

fun <CS : HTMLElement> RenderContext.dataCollectionSortButton(sort: Sorting<T>, classes: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, tag: TagFactory<Tag<CS>>, initialize: DataCollection.DataCollectionSortButton<CS, T, C>.() -> Unit)
fun <CS : HTMLElement> RenderContext.dataCollectionSortButton(comparatorAscending: Comparator<T>, comparatorDescending: Comparator<T>, classes: String? = null, id: String? = null, internalScope: ScopeContext.() -> Unit = {}, tag: TagFactory<Tag<CS>>, initialize: DataCollection.DataCollectionSortButton<CS, T, C>.() -> Unit)

Factory function to create a dataCollectionSortButton.

For more information refer to the official documentation


fun RenderContext.dataCollectionSortButton(sort: Sorting<T>, classes: String? = null, id: String? = null, internalScope: ScopeContext.() -> Unit = {}, initialize: DataCollection.DataCollectionSortButton<HTMLButtonElement, T, C>.() -> Unit)
fun RenderContext.dataCollectionSortButton(comparatorAscending: Comparator<T>, comparatorDescending: Comparator<T>, classes: String? = null, id: String? = null, internalScope: ScopeContext.() -> Unit = {}, initialize: DataCollection.DataCollectionSortButton<HTMLButtonElement, T, C>.() -> Unit)

Factory function to create a dataCollectionSortButton with a HTMLButtonElement as default Tag.

For more information refer to the official documentation