ComboBoxContentModel

data class ComboBoxContentModel<E>(items: List<E>, selectedItem: E, richTooltip: RichTooltip?, enabled: Boolean, onTriggerItemSelectedChange: (E) -> Unit) : ContentModel

Properties

enabled
Link copied to clipboard
val enabled: Boolean = true
items
Link copied to clipboard
val items: List<E>
onTriggerItemSelectedChange
Link copied to clipboard
val onTriggerItemSelectedChange: (E) -> Unit
richTooltip
Link copied to clipboard
val richTooltip: RichTooltip? = null
selectedItem
Link copied to clipboard
val selectedItem: E