MultiSelect component allows the user to select a value from the predefined list of values.
<ejs-multiselect :dataSource='data'></ejs-multiselect>
string
Accepts the template and assigns it to the popup list content of the MultiSelect component when the data fetch request from the remote server fails.
Defaults to ‘Request failed’
boolean
By default, the typed value is converting into chip or update as value of the component when you press the enter key or select from the popup. If you want to convert the typed value into chip or update as value of the component while focusing out the component, then enable this property. If custom value is enabled, both custom value and value present in the list are converted into tag while focusing out the component; Otherwise, value present in the list is converted into tag while focusing out the component.
Defaults to false
boolean
Allows user to add a
custom value
, the value which is not present in the suggestion list.
Defaults to false
boolean
To enable the filtering option in this component.
Filter action performs when type in search box and collect the matched item through filtering
event.
If searching character does not match, noRecordsTemplate
property value will be shown.
Defaults to null
boolean
By default, the multiselect component fires the change event while focus out the component. If you want to fires the change event on every value selection and remove, then disable the changeOnBlur property.
Defaults to true
boolean
Based on the property, when item get select popup visibility state will changed.
Defaults to true
string
Sets the CSS classes to root element of this component which helps to customize the complete styles.
Defaults to null
Object
[]
| DataManager
| string[]
| number[]
| boolean[]
Accepts the list items either through local or remote service and binds it to the MultiSelect component.
It can be an array of JSON Objects or an instance of
DataManager
.
Defaults to []
string
Sets the delimiter character for ‘default’ and ‘delimiter’ visibility modes.
Defaults to ’,’
boolean
Specifies a Boolean value that indicates the whether the grouped list items are allowed to check by checking the group header in checkbox mode. By default, there is no checkbox provided for group headers. This property allows you to render checkbox for group headers and to select all the grouped items at once
Defaults to false
boolean
Defines whether to allow the cross-scripting site or not.
Defaults to false
boolean
Enable or disable persisting MultiSelect component’s state between page reloads. If enabled, following list of states will be persisted.
Defaults to false
boolean
Enable or disable rendering component in right to left direction.
Defaults to false
boolean
Reorder the selected items in popup visibility state.
Defaults to true
boolean
Specifies a value that indicates whether the MultiSelect component is enabled or not.
Defaults to true
FieldSettingsModel
The fields
property maps the columns of the data table and binds the data to the component.
groupBy - Group the list items with it’s related items by mapping groupBy field.
<input type="text" tabindex="1" id="list"> </input>
let customers: MultiSelect = new MultiSelect({
dataSource:new DataManager({ url:'http://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/' }),
query: new Query().from('Customers').select(['ContactName', 'CustomerID']).take(5),
fields: { text: 'ContactName', value: 'CustomerID' },
placeholder: 'Select a customer'
});
customers.appendTo("#list");
Defaults to {text: null, value: null, iconCss: null, groupBy: null}
string
Accepts the value to be displayed as a watermark text on the filter bar.
Defaults to null
string
Determines on which filter type, the MultiSelect component needs to be considered on search action.
The FilterType
and its supported data types are
FilterType |
Description |
Supported Types |
StartsWith |
Checks whether a value begins with the specified value. |
String |
EndsWith |
Checks whether a value ends with specified value. |
String |
Contains |
Checks whether a value contains with specified value. |
String |
The default value set to StartsWith
, all the suggestion items which contain typed characters to listed in the suggestion popup.
Defaults to ‘StartsWith’
FloatLabelType
Specifies whether to display the floating label above the input element. Possible values are:
Defaults to Syncfusion.EJ2.Inputs.FloatLabelType.Never
string
Accepts the template design and assigns it to the footer container of the popup list.
For more details about the available template options refer to
Template
documentation.
Defaults to null
string
Accepts the template design and assigns it to the group headers present in the MultiSelect popup list.
Defaults to null
string
Accepts the template design and assigns it to the header container of the popup list.
For more details about the available template options refer to
Template
documentation.
Defaults to null
boolean
Hides the selected item from the list item.
Defaults to true
Object
Gets or sets the additional attribute to HtmlAttributes
property in MultiSelect,
which helps to add attribute like title, name etc, input should be key value pair.
<template>
<ejs-multiselect :htmlAttributes="htmlAttributes" :dataSource="dataSource" :fields="fields"></ejs-multiselect>
</template>
<script>
import Vue from "vue";
import { MultiSelectPlugin } from "@syncfusion/ej2-vue-dropdowns";
Vue.use(MultiSelectPlugin);
var countries = [
{ Name: "Australia", Code: "AU" },
{ Name: "Bermuda", Code: "BM" },
{ Name: "Canada", Code: "CA" },
{ Name: "Cameroon", Code: "CM" },
{ Name: "Denmark", Code: "DK" }
];
export default {
data() {
return {
htmlAttributes: { name: "country", placeholder: "Select a country", title: "MultiSelect DropDown" },
fields: { text: 'Name', value: 'Code' },
dataSource: countries,
};
}
};
</script>
Defaults to {}
boolean
ignoreAccent set to true, then ignores the diacritic characters or accents when filtering.
boolean
Sets case sensitive
option for filter operation.
Defaults to true
string
Accepts the template design and assigns it to each list item present in the popup.
For more details about the available template options refer to
Template
documentation. We have built-intemplate engine
which provides options to compile template string into a executable function. For EX: We have expression evolution as like ES6 expression string literals.
Defaults to null
string
Overrides the global culture and localization value for this component. Default global culture is ‘en-US’.
Defaults to ‘en-US’
number
Sets limitation to the value selection. based on the limitation, list selection will be prevented.
Defaults to 1000
string
configures visibility mode for component interaction.
Box
- selected items will be visualized in chip.Delimiter
- selected items will be visualized in text content.Default
- on focus in
component will act in box
mode.
on blur
component will act in delimiter
mode.CheckBox
- The ‘checkbox’ will be visualized in list item.Defaults to Default
string
Accepts the template design and assigns it to popup list of MultiSelect component when no data is available on the component.
Defaults to ‘No records found’
boolean
Whether to automatically open the popup when the control is clicked.
Defaults to true
string
Gets or sets the placeholder in the component to display the given information in input when no item selected.
Defaults to null
string
| number
Gets or sets the height of the popup list. By default it renders based on its list item.
For more details about the popup configuration refer to
Popup Configuration
documentation.
Defaults to ‘300px’
string
| number
Gets or sets the width of the popup list and percentage values has calculated based on input width.
For more details about the popup configuration refer to
Popup Configuration
documentation.
Defaults to ‘100%’
Query
Accepts the external Query
which will execute along with the data processing in MultiSelect.
Defaults to null
boolean
Gets or sets the readonly
to input or not. Once enabled, just you can copy or highlight
the text however tab key action will perform.
Defaults to false
string
Specifies the selectAllText to be displayed on the component.
Defaults to ‘select All’
boolean
Enables close icon with the each selected item.
Defaults to true
boolean
Allows you to either show or hide the DropDown button on the component
Defaults to false
boolean
Allows you to either show or hide the selectAll option on the component.
Defaults to false
string
Specifies the sortOrder
to sort the data source. The available type of sort orders are
None
- The data source is not sorting.Ascending
- The data source is sorting with ascending order.Descending
- The data source is sorting with descending order.Defaults to null
string
Selects the list item which maps the data text
field in the component.
Defaults to null
string
Specifies the UnSelectAllText to be displayed on the component.
Defaults to ‘select All’
number[]
| string[]
| boolean[]
Selects the list item which maps the data value
field in the component.
<template>
<ejs-multiselect :dataSource="dataSource" :value="value" :fields="fields" :placeholder="placeholder"></ejs-multiselect>
</template>
<script>
import Vue from "vue";
import { MultiSelectPlugin } from "@syncfusion/ej2-vue-dropdowns";
Vue.use(MultiSelectPlugin);
var countries = [
{ Name: "Australia", Code: "AU" },
{ Name: "Bermuda", Code: "BM" },
{ Name: "Canada", Code: "CA" },
{ Name: "Cameroon", Code: "CM" },
{ Name: "Denmark", Code: "DK" }
];
export default {
data() {
return {
fields: { text: 'Name', value: 'Code' },
placeholder: 'Select a Country',
dataSource: countries,
value:["CM"]
};
}
};
</script>
Defaults to null
string
Accepts the template design and assigns it to the selected list item in the input element of the component.
For more details about the available template options refer to
Template
documentation.
We have built-in template engine
which provides options to compile template string into a executable function.
For EX: We have expression evolution as like ES6 expression string literals.
Defaults to null
string
| number
Gets or sets the width of the component. By default, it sizes based on its parent. container dimension.
Defaults to ‘100%’
number
specifies the z-index value of the component popup element.
Defaults to 1000
Adds a new item to the multiselect popup list. By default, new item appends to the list as the last item, but you can insert based on the index parameter.
Parameter | Type | Description |
---|---|---|
items | Object`[]` | Object | string | boolean | number | string[] | boolean[] | number[] | Specifies an array of JSON data or a JSON data. |
|
itemIndex (optional) | number |
Specifies the index to place the newly added item in the popup list. |
Returns void
Allows you to clear the selected values from the Multiselect component.
Returns void
Removes the component from the DOM and detaches all its related event handlers. Also it removes the attributes and classes.
Returns void
To filter the multiselect data from given data source by using query
Parameter | Type | Description |
---|---|---|
dataSource | Object[] | DataManager | string[] | number[] | boolean[] | Set the data source to filter. |
|
query (optional) | Query |
Specify the query to filter the data. |
fields (optional) | FieldSettingsModel |
Specify the fields to map the column in the data table. |
Returns void
Sets the focus to widget for interaction.
Returns void
Remove the focus from widget, if the widget is in focus state.
Returns void
Gets the data Object that matches the given value.
Parameter | Type | Description |
---|---|---|
value | string | number | boolean |
Specifies the value of the list item. |
Returns Object | string | number | boolean
Hides the popup, if the popup in a open state.
Returns void
Hides the spinner loader.
Returns void
Based on the state parameter, entire list item will be selected/deselected.
parameter
true
- Selects entire list items.
false
- Un Selects entire list items.
Parameter | Type | Description |
---|---|---|
state | boolean |
if it’s true then Selects the entire list items. If it’s false the Unselects entire list items. |
Returns void
Shows the popup, if the popup in a closed state.
Returns void
Shows the spinner loader.
Returns void
EmitType<Object>
Triggers before fetching data from the remote server.
EmitType<Object>
Triggers after data is fetched successfully from the remote server.
EmitType<Object>
Triggers when the data fetch request from the remote server fails.
EmitType<Object>
Fires when popup opens before animation.
Fires before select all process.
EmitType<Object>
Event triggers when the input get focus-out.
EmitType<MultiSelectChangeEventArgs>
Fires each time when selection changes happened in list items after model and input value get affected.
EmitType<Object>
Event triggers when the chip selection.
EmitType<PopupEventArgs>
Fires when popup close after animation completion.
EmitType<Object>
Triggers when the component is created.
EmitType<CustomValueEventArgs>
Triggers when the customValue
is selected.
EmitType<Object>
Triggers when data source is populated in the popup list..
EmitType<Object>
Triggers when the component is destroyed.
EmitType<FilteringEventArgs>
Triggers event,when user types a text in search box.
For more details about filtering, refer to
Filtering
documentation.
EmitType<Object>
Event triggers when the input get focused.
EmitType<PopupEventArgs>
Fires when popup opens after animation completion.
Fires after the selected item removed from the widget.
Fires before the selected item removed from the widget.
EmitType<SelectEventArgs>
Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.
Fires after select all process completion.
Fires before set the selected item as chip in the component.
For more details about chip customization refer
Chip Customization