View Source PlausibleWeb.Live.Components.ComboBox (Plausible v0.0.1)
Phoenix LiveComponent for a combobox UI element with search and selection functionality.
The component allows users to select an option from a list of options, which can be searched by typing in the input field.
The component renders an input field with a dropdown anchor and a hidden input field for submitting the selected value.
The number of options displayed in the dropdown is limited to 15 by default but can be customized. When a user types into the input field, the component searches the available options and provides suggestions based on the input.
Any module exposing suggest/2 function can be supplied via suggest_mod
attribute - see the provided ComboBox.StaticSearch
.
Summary
Functions
Attributes
ref
(:string
) (required)suggestions
(:list
) - Defaults to[]
.suggest_mod
(:atom
) (required)target
(:any
)creatable
(:boolean
) (required)display_value
(:string
) (required)
Attributes
id
(:any
) (required)
Callback implementation for Phoenix.LiveComponent.handle_event/3
.
Attributes
display_value
(:string
) (required)submit_value
(:string
) (required)ref
(:string
) (required)target
(:any
)idx
(:integer
) (required)creatable
(:boolean
) - Defaults tofalse
.
Attributes
placeholder
(:string
) - Defaults to"Select option or search by typing"
.id
(:any
) (required)options
(:list
) (required)submit_name
(:string
) (required)display_value
(:string
) - Defaults to""
.submit_value
(:string
) - Defaults to""
.suggest_mod
(:atom
) (required)suggestions_limit
(:integer
)class
(:string
) - Defaults to""
.required
(:boolean
) - Defaults tofalse
.creatable
(:boolean
) - Defaults tofalse
.
Callback implementation for Phoenix.LiveComponent.update/2
.
Functions
Attributes
ref
(:string
) (required)suggestions
(:list
) - Defaults to[]
.suggest_mod
(:atom
) (required)target
(:any
)creatable
(:boolean
) (required)display_value
(:string
) (required)
Attributes
id
(:any
) (required)
Callback implementation for Phoenix.LiveComponent.handle_event/3
.
Attributes
display_value
(:string
) (required)submit_value
(:string
) (required)ref
(:string
) (required)target
(:any
)idx
(:integer
) (required)creatable
(:boolean
) - Defaults tofalse
.
Attributes
placeholder
(:string
) - Defaults to"Select option or search by typing"
.id
(:any
) (required)options
(:list
) (required)submit_name
(:string
) (required)display_value
(:string
) - Defaults to""
.submit_value
(:string
) - Defaults to""
.suggest_mod
(:atom
) (required)suggestions_limit
(:integer
)class
(:string
) - Defaults to""
.required
(:boolean
) - Defaults tofalse
.creatable
(:boolean
) - Defaults tofalse
.
Callback implementation for Phoenix.LiveComponent.update/2
.