ItemList

data class ItemList<T>(val query: String, val items: List<Combobox.Item<T>>, val truncated: Boolean) : Combobox.QueryResult<T>

Represents a list of items produced by a query that should be displayed in the selection dropdown.

The truncated property is set to `true if the filter function specified via filterBy returned more than maximumDisplayedItems items.

See QueryResult for more information.

Constructors

Link copied to clipboard
constructor(query: String, items: List<Combobox.Item<T>>, truncated: Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard