How can I help you?
Filtering in React Drop down list component
21 Feb 202624 minutes to read
The DropDownList includes built-in filtering support when allowFiltering is enabled. Filtering begins immediately as you type characters in the search box.
To display filtered items in the popup, handle the filtering event to filter your data source and return results using the updateData method.
The following example shows how to filter the data source and display results through the updateData method in the filtering event.
[Class-component]
// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// maps the appropriate column to fields property
fields = { text: "Country", value: "Index" };
// define the filtering data
searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "California" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// filtering event handler to filter a Country
onFiltering(args) {
let query = new Query();
// frame the query based on search string with filter type.
query = (args.text !== "") ? query.where("Country", "startswith", args.text, true) : query;
// pass the filter data source, filter query to updateData method.
args.updateData(this.searchData, query);
}
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="250px" fields={this.fields} filtering={this.onFiltering = this.onFiltering.bind(this)} allowFiltering={true} dataSource={this.searchData} placeholder="Select a country"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// maps the appropriate column to fields property
private fields: object = { text: "Country", value: "Index" };
// define the filtering data
private searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "California" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// filtering event handler to filter a Country
public onFiltering(args: FilteringEventArgs) {
let query = new Query();
// frame the query based on search string with filter type.
query = (args.text !== "") ? query.where("Country", "startswith", args.text, true) : query;
// pass the filter data source, filter query to updateData method.
args.updateData(this.searchData, query);
}
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="250px" fields={this.fields} filtering={this.onFiltering = this.onFiltering.bind(this)} allowFiltering={true} dataSource={this.searchData} placeholder="Select a country" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// maps the appropriate column to fields property
const fields = { text: "Country", value: "Index" };
// define the filtering data
const searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "California" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// filtering event handler to filter a Country
function onFiltering(args) {
let query = new Query();
// frame the query based on search string with filter type.
query = (args.text !== "") ? query.where("Country", "startswith", args.text, true) : query;
// pass the filter data source, filter query to updateData method.
args.updateData(this.searchData, query);
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="250px" fields={fields} filtering={onFiltering = onFiltering.bind(this)} allowFiltering={true} dataSource={searchData} placeholder="Select a country"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// maps the appropriate column to fields property
const fields: object = { text: "Country", value: "Index" };
// define the filtering data
const searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "California" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// filtering event handler to filter a Country
function onFiltering(args: FilteringEventArgs) {
let query = new Query();
// frame the query based on search string with filter type.
query = (args.text !== "") ? query.where("Country", "startswith", args.text, true) : query;
// pass the filter data source, filter query to updateData method.
args.updateData(this.searchData, query);
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="250px" fields={fields} filtering={onFiltering = onFiltering.bind(this)} allowFiltering={true} dataSource={searchData} placeholder="Select a country" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));Limit the minimum filter character
Control filtering performance by setting a minimum character count before issuing remote requests. Use manual validation in the filter event handler to enforce this limit.
In the following example, the component does not fetch data until at least three characters are typed.
[Class-component]
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// bind the DataManager instance to dataSource property
searchData = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
fields = { text: 'ContactName', value: 'CustomerID' };
// bind the Query instance to query property
query = new Query().select(['ContactName', 'CustomerID']).take(7);
// sort the resulted items
sortOrder = 'Ascending';
// filtering event handler to filter a customer
onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
}
else {
// restrict the remote request until search key contains 3 characters.
if (e.text.length < 3) {
return;
}
let query = new Query().select(['ContactName', 'CustomerID']);
query = (e.text !== '') ? query.where('ContactName', 'startswith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} query={this.query} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// bind the DataManager instance to dataSource property
private searchData: DataManager = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
private fields: object = { text: 'ContactName', value: 'CustomerID' };
// bind the Query instance to query property
private query: Query = new Query().select(['ContactName', 'CustomerID']).take(7);
// sort the resulted items
private sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
public onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
} else {
// restrict the remote request until search key contains 3 characters.
if (e.text.length < 3) { return; }
let query: Query = new Query().select(['ContactName', 'CustomerID']);
query = (e.text !== '') ? query.where('ContactName', 'startswith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} query={this.query} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// bind the DataManager instance to dataSource property
const searchData = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
const fields = { text: 'ContactName', value: 'CustomerID' };
// bind the Query instance to query property
const query = new Query().select(['ContactName', 'CustomerID']).take(7);
// sort the resulted items
const sortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
}
else {
// restrict the remote request until search key contains 3 characters.
if (e.text.length < 3) {
return;
}
let query = new Query().select(['ContactName', 'CustomerID']);
query = (e.text !== '') ? query.where('ContactName', 'startswith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} query={query} dataSource={searchData} fields={fields} placeholder="Select a customer"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App(){
// bind the DataManager instance to dataSource property
const searchData: DataManager = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
const fields: object = { text: 'ContactName', value: 'CustomerID' };
// bind the Query instance to query property
const query: Query = new Query().select(['ContactName', 'CustomerID']).take(7);
// sort the resulted items
const sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
} else {
// restrict the remote request until search key contains 3 characters.
if (e.text.length < 3) { return; }
let query: Query = new Query().select(['ContactName', 'CustomerID']);
query = (e.text !== '') ? query.where('ContactName', 'startswith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} query={query} dataSource={searchData} fields={fields} placeholder="Select a customer" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));Change the filter type
Customize filter behavior by changing the filter type to contains, startsWith, or endsWith within the filter event handler.
The following examples demonstrate filtering with the endsWith type.
[Class-component]
// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// bind the DataManager instance to dataSource property
searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// maps the appropriate column to fields property
fields = { value: "Country" };
// sort the resulted items
sortOrder = 'Ascending';
// filtering event handler to filter a customer
onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
}
else {
let query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'endsWith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// bind the DataManager instance to dataSource property
private searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
]
// maps the appropriate column to fields property
private fields: object = { value: "Country" };
// sort the resulted items
private sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
public onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
} else {
let query: Query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'endsWith', e.text, true) : query;
e.updateData(this.searchData, query);
}
}
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// bind the DataManager instance to dataSource property
let searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// maps the appropriate column to fields property
let fields = { value: "Country" };
// sort the resulted items
let sortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(searchData);
}
else {
let query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'endsWith', e.text, true) : query;
e.updateData(searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} dataSource={searchData} fields={fields} placeholder="Select a customer"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));// import DataManager related classes
import { Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// bind the DataManager instance to dataSource property
let searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
]
// maps the appropriate column to fields property
let fields: object = { value: "Country" };
// sort the resulted items
let sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(searchData);
} else {
let query: Query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'endsWith', e.text, true) : query;
e.updateData(searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" allowFiltering={true} popupHeight="250px" filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} dataSource={searchData} fields={fields} placeholder="Select a customer" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));Case sensitive filtering
Data items can be filtered either with or without case sensitivity using the DataManager. This can be done by passing the fourth optional parameter of the where clause.
The following example shows how to perform case-sensitive filter.
[Class-component]
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// bind the DataManager instance to dataSource property
searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// maps the appropriate column to fields property
fields = { value: "Country" };
// sort the resulted items
sortOrder = 'Ascending';
// filtering event handler to filter a customer
onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
}
else {
let query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'contains', e.text, false) : query;
e.updateData(this.searchData, query);
}
}
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="245px" allowFiltering={true} filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));import { Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// bind the DataManager instance to dataSource property
private searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
]
// maps the appropriate column to fields property
private fields: object = { value: "Country" };
// sort the resulted items
private sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
public onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
} else {
let query: Query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'contains', e.text, false) : query;
e.updateData(this.searchData, query);
}
}
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="245px" allowFiltering={true} filtering={this.onFiltering = this.onFiltering.bind(this)} sortOrder={this.sortOrder} dataSource={this.searchData} fields={this.fields} placeholder="Select a customer" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
import { Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// bind the DataManager instance to dataSource property
const searchData = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
];
// maps the appropriate column to fields property
const fields = { value: "Country" };
// sort the resulted items
const sortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
}
else {
let query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'contains', e.text, false) : query;
e.updateData(this.searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="245px" allowFiltering={true} filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} dataSource={searchData} fields={fields} placeholder="Select a customer"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));import { Query } from '@syncfusion/ej2-data';
import { SortOrder } from '@syncfusion/ej2-lists';
import { DropDownListComponent, FilteringEventArgs } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App(){
// bind the DataManager instance to dataSource property
const searchData: { [key: string]: Object }[] = [
{ Index: "s1", Country: "Alaska" }, { Index: "s2", Country: "Californiag" },
{ Index: "s3", Country: "Florida" }, { Index: "s4", Country: "Georgia" }
]
// maps the appropriate column to fields property
const fields: object = { value: "Country" };
// sort the resulted items
const sortOrder: SortOrder = 'Ascending';
// filtering event handler to filter a customer
function onFiltering(e: FilteringEventArgs) {
// load overall data when search key empty.
if (e.text === '') {
e.updateData(this.searchData);
} else {
let query: Query = new Query();
// change the type of filtering
query = (e.text !== '') ? query.where('Country', 'contains', e.text, false) : query;
e.updateData(this.searchData, query);
}
}
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" popupHeight="245px" allowFiltering={true} filtering={onFiltering = onFiltering.bind(this)} sortOrder={sortOrder} dataSource={searchData} fields={fields} placeholder="Select a customer" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));Diacritics Filtering
DropDownList supports diacritics filtering which will ignore the diacritics and makes it easier to filter the results in international characters lists when the ignoreAccent is enabled.
In the following sample,data with diacritics are bound as dataSource for DropDownList.
[Class-component]
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
diacriticsData = [
'Aeróbics',
'Aeróbics en Agua',
'Aerografía',
'Aeromodelaje',
'Águilas',
'Ajedrez',
'Ala Delta',
'Álbumes de Música',
'Alusivos',
'Análisis de Escritura a Mano'
];
render() {
return (<DropDownListComponent id="diacritics" ignoreAccent={true} dataSource={this.diacriticsData} allowFiltering={true} placeholder="Select a value" filterBarPlaceholder="e.g: aero"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
private diacriticsData: string[] = [
'Aeróbics',
'Aeróbics en Agua',
'Aerografía',
'Aeromodelaje',
'Águilas',
'Ajedrez',
'Ala Delta',
'Álbumes de Música',
'Alusivos',
'Análisis de Escritura a Mano'];
public render() {
return (
<DropDownListComponent id="diacritics" ignoreAccent={true} dataSource={this.diacriticsData} allowFiltering={true} placeholder="Select a value" filterBarPlaceholder="e.g: aero" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
const diacriticsData = [
'Aeróbics',
'Aeróbics en Agua',
'Aerografía',
'Aeromodelaje',
'Águilas',
'Ajedrez',
'Ala Delta',
'Álbumes de Música',
'Alusivos',
'Análisis de Escritura a Mano'
];
return (<DropDownListComponent id="diacritics" ignoreAccent={true} dataSource={diacriticsData} allowFiltering={true} placeholder="Select a value" filterBarPlaceholder="e.g: aero"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App(){
const diacriticsData: string[] = [
'Aeróbics',
'Aeróbics en Agua',
'Aerografía',
'Aeromodelaje',
'Águilas',
'Ajedrez',
'Ala Delta',
'Álbumes de Música',
'Alusivos',
'Análisis de Escritura a Mano'];
return (
<DropDownListComponent id="diacritics" ignoreAccent={true} dataSource={diacriticsData} allowFiltering={true} placeholder="Select a value" filterBarPlaceholder="e.g: aero" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));You can also explore our React DropDownList Filtering example that shows how to render the DropDownList Filter in React.
Debounce delay
You can use the debounceDelay property for filtering, enabling you to set a delay in milliseconds. This functionality helps reduce the frequency of filtering as you type, enhancing performance and responsiveness for a smoother user experience.By default, a DebounceDelay of 300ms is set. If you wish to disable this feature entirely, you can set it to 0ms.
[Class-component]
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// define the array of string
sportsData = ['Badminton', 'Basketball', 'Cricket', 'Football', 'Golf', 'Hockey', 'Snooker', 'Tennis'];
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" dataSource={this.sportsData} placeholder="Select a game" debounceDelay={300}/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// define the array of string
private sportsData: string[] = ['Badminton', 'Basketball', 'Cricket', 'Football', 'Golf', 'Hockey', 'Snooker', 'Tennis'];
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" dataSource={this.sportsData} placeholder="Select a game" debounceDelay={300} />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));[Functional-component]
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// define the array of string
const sportsData = ['Badminton', 'Basketball', 'Cricket', 'Football', 'Golf', 'Hockey', 'Snooker', 'Tennis'];
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" dataSource={sportsData} placeholder="Select a game" debounceDelay={300}/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// define the array of string
const sportsData: string[] = ['Badminton', 'Basketball', 'Cricket', 'Football', 'Golf', 'Hockey', 'Snooker', 'Tennis'];
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" dataSource={sportsData} placeholder="Select a game" debounceDelay={300} />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));