MultiInput Blazor API

MultiInput Properties

NameTypeDefaultDescription
AutoCompleteDelayint100Determines the delay before the drop down opens to show the matches from the auto complete operation. The delay is measured in miliseconds.
DataSourceobjectN/ADetermines the data source that will be loaded to the MutliInput. The dataSource can be an array of strings/numbers or objects where the attributes represent the properties of a List Item. For example label, value. It can also be a callback that returns an Array of items as previously described.
DisabledboolfalseEnables or disables the element.
DropDownButtonPositionDropDownButtonPositionDropDownButtonPosition.RightDetermines the position of the drop down button.
DropDownHeightobjectSets the height of the drop down. By default it's set to an empty string. In this case the height of the drop down is controlled by a CSS variable.
DropDownWidthobjectSets the width of the drop down. By default it's set to an empty string. In this case the width of the drop down is controlled by a CSS variable.
InputPurposestring"off"Sets the purpose of the input and what, if any, permission the user agent has to provide automated assistance in filling out the element's input when in a form, as well as guidance to the browser as to the type of information expected in the element. This value corresponds to the standard HTML autocomplete attribute and can be set to values such as 'on', 'name', 'organization', 'street-address', etc.
Itemsint8Determines the maximum number of matched items that should be visible inside the drop down as a result of a new autoComplete query. By default the maximum number of 8 items can be displayed inside the drop down.
Localestring"en"Sets or gets the language. Used in conjunction with the property messages.
MessagesobjectN/ASets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale.
MinLengthint1Determines the minimum number of characters inside the input in order to trigger the autocomplete functionality that will open the drop down and show the matched items.
Namestring""Sets or gets the name attribute for the element. Name is used when submiting data inside an HTML form.
IsOpenedboolfalseDetermines whether the drop down is opened or not.
Placeholderstring""Determines the placeholder of the input.
QueryobjectSets or gets the query that is used to filter the items. Query is used by the autoComplete operation. Empty string means that all items from the data source will be displayed and no filter query is applied.
QueryModeMultiInputQueryModeMultiInputQueryMode.ContainsIgnoreCaseDetermines the auto complete query mode. This property also determines the matching algorithm for the autocomplete operation.
ReadonlyboolfalseDetermines whether ot not the user can enter text inside the input. if dropDownButtonPosition is set to 'left' or 'right' then readonly determines whether the element acts as a ComboBox or a DropDownList if a dataSource is provided.
RightToLeftboolfalseSets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
Separatorstring","Determines the delimiter between the selected items in the input.
SelectedValuesIEnumerable<object>N/AGets or sets an array of selected values.
SelectAllboolfalseDetermines whether an additional item is displayed as the first item in the options list, which allows to select/unselect all items.
SortedboolfalseDetermines whether the items are sorted alphabetically or not
SortDirectionstring"asc"Determines the sorting algorithm - ascending(asc) or descending(desc) if sort is enabled.
Themestring""Determines the theme for the element. Themes define the look of the elements.
Typestring""Determines the input type. Input type determines what input can be entered.
UnfocusableboolfalseIf is set to true, the element cannot be focused.
Valuestring""Sets or gets the value of the element.

MultiInput Methods

NameTypeArgumentsDescription
ClosevoidN/ACloses the drop down.
EnsureVisiblevoidN/AEnsures that the active ( selected ) item is always visible.
GetDataSourceAsync()Task<IEnumerable<object>>'N/A'Gets the &quot;DataSource&quot; property as Task&lt;IEnumerable&lt;object&gt;&gt;.
GetIsOpenedAsync()Task<bool>'N/A'Gets the &quot;IsOpened&quot; property as Task&lt;bool&gt;.
GetSelectedValuesAsync()Task<IEnumerable<object>>'N/A'Gets the &quot;SelectedValues&quot; property as Task&lt;IEnumerable&lt;object&gt;&gt;.
GetValueAsync()Task<string>'N/A'Gets the &quot;Value&quot; property as Task&lt;string&gt;.
OpenvoidN/AOpens the drop down.
Refreshvoid'N/A'Refreshes the Blazor Component. Performs a layout of the HTML Elements and recalculates the measurements.
Rendervoid'N/A'Re-renders the Blazor Component. This method will make a full re-render.
SelectvoidN/ASelects the text inside the input or if it is <b>readonly</b> then the element is focused.
StateHasChangedvoid'N/A'Refreshes the state and Re-renders the Blazor Component, if necessary.

MultiInput Events

NameTypeDescriptionEvent Detail
OnChangeEventCallback<Event>This event is triggered when the selection is changed.string label- The label of the new selected item., dynamic oldLabel- The label of the item that was previously selected before the event was triggered., dynamic oldValue- The value of the item that was previously selected before the event was triggered., dynamic value- The value of the new selected item.
Changedevent MultiInputChangedEventHandlerThis event is triggered when the selection is changed.MultiInputChangedEventArgs

Enums

DropDownButtonPosition.None
DropDownButtonPosition.Left
DropDownButtonPosition.Right

MultiInputQueryMode

MultiInputQueryMode.Contains
MultiInputQueryMode.ContainsIgnoreCase
MultiInputQueryMode.DoesNotContain
MultiInputQueryMode.DoesNotContainIgnoreCase
MultiInputQueryMode.Equals
MultiInputQueryMode.EqualsIgnoreCase
MultiInputQueryMode.StartsWith
MultiInputQueryMode.StartsWithIgnoreCase
MultiInputQueryMode.EndsWith
MultiInputQueryMode.EndsWithIgnoreCase