comboboxItem

fun <EJ : HTMLElement> RenderContext.comboboxItem(    item: Combobox.Item<T>,     classes: String? = null,     scope: ScopeContext.() -> Unit = {},     tag: TagFactory<Tag<EJ>>,     initialize: Combobox.ComboboxItems.ComboboxItem<EJ, EI, E, T>.() -> Unit): Tag<EJ>

Factory function to create a comboboxItem.

For more information refer to the official documentation


fun RenderContext.comboboxItem(    item: Combobox.Item<T>,     classes: String? = null,     scope: ScopeContext.() -> Unit = {},     initialize: Combobox.ComboboxItems.ComboboxItem<HTMLDivElement, EI, E, T>.() -> Unit): Tag<HTMLDivElement>

Factory function to create a comboboxItem with an HTMLDivElement as default root Tag.

For more information refer to the official documentation