Select
Select components.
Select Native, Personalization Blocks
This content is part of TallStackUI personalization.
Example:
TallStackUi::personalize() ->select() ->block('block', 'classes');
The soft personalization should be done in boot
method of service providers.
Select Styled, Personalization Blocks
This content is part of TallStackUI personalization.
Example:
TallStackUi::personalize() ->select('styled') ->block('block', 'classes');
The soft personalization should be done in boot
method of service providers.
An option to use multi-dimensional array.
An option to not show validation error message.
This option is also available for the other select components below.
Customized styled select component to interact with Livewire.
An option to make the select component required.
The user will not be able to deselect the selected option after selecting an option.
An option to use multi-dimensional array.
An option to disable specific options.
An option to limit the number of selections.
An option to interact with the search term when nothing is found.
options
parameter, you must specify the URL from which the results will come, together
with the select
parameter, which is mandatory for this mode.
For identification purposes, a header X-Tallstack-Ui is sent in the request.
Customized styled select component to interact with APIs.
The params
are updated when you make changes. This means that if you are using this
component within the Livewire components and create a variable to be used in params
, when
making any changes to this variable and Livewire hydrate the page, the next time the select
is opened to make a new request, params
will be updated in the request. This is useful
to allow you to use the params
to interact dynamically with the query of the request.