Filtering

12 Apr 201912 minutes to read

The ComboBox has built-in support to filter data items when allowFiltering is enabled. The filter operation starts as soon as you start typing characters in the component.

To display filtered items in the popup, filter the required data and return it to the ComboBox via updateData method by using the filtering event.

The following sample illustrates how to query the data source and pass the data to the ComboBox through the updateData method in filtering event.

  • HTML
  • <input id="List" ej-combobox [dataSource]="data" [fields]="fields" width="100%" [allowFiltering]="allowFiltering" [placeholder]="placeholder" (filtering)="filtering($event)"/>
  • HTML
  • import {Component} from '@angular/core';
    
             @Component({
               selector: 'ej-app',
               templateUrl: 'app/components/combobox/combobox.component.html' //give the path file for ComboBox component html file.
              })
              export class DropDownListComponent {
                    data: Array<Object> = [];
                    fields: Object;
                    value: string;
    				placeholder: string;
                    allowFiltering: boolean = true;
                    constructor() {
                    this.data = [
                       { id: 'level1', game: 'American Football' }, { id: 'level2', game: 'Badminton' },
    	               { id: 'level3', game: 'Basketball' }, { id: 'level4', game: 'Cricket' },
    	               { id: 'level5', game: 'Football' }, { id: 'level6', game: 'Golf' },
    	               { id: 'level7', game: 'Hockey' }, { id: 'level8', game: 'Rugby' },
    	               { id: 'level9', game: 'Snooker' }, { id: 'level10', game: 'Tennis' }
                      ];
                  this.fields = { dataSource: this.data, text: "game", value: "id" };
    			   this.placeholder = 'Select a game';
                  }
                   filtering(e: any) {
                        let  query = new ej.Query().select(['game', 'id']);
                       query = (e.text !== '') ? query.where('game', ej.FilterOperators.startsWith, e.text, true) : query;
                       e.updateData(this.data, query);
                  }
                }

    filtering

    Limit the Minimum Filter Character

    When filtering the list items, you can set the limit for character count to raise remote request and fetch filtered data on the ComboBox. This can be done by manual validation within the filter event handler.

    In the following example, the remote request does not fetch the search data until the search key contains three characters.

  • HTML
  • <input id="List" ej-combobox [dataSource]="data" [fields]="fields" width="100%" [allowFiltering]="allowFiltering" [placeholder]="placeholder" (filtering)="filtering($event)"/>
  • HTML
  • import {Component} from '@angular/core';
    
             @Component({
               selector: 'ej-app',
               templateUrl: 'app/components/combobox/combobox.component.html' //give the path file for ComboBox component html file.
              })
              export class DropDownListComponent {
                    data: Array<Object> = [];
                    fields: Object;
                    value: string;
    				placeholder: string;
                    allowFiltering: boolean = true;
                    constructor() {
                    this.data = [
                       { id: 'level1', game: 'American Football' }, { id: 'level2', game: 'Badminton' },
    	               { id: 'level3', game: 'Basketball' }, { id: 'level4', game: 'Cricket' },
    	               { id: 'level5', game: 'Football' }, { id: 'level6', game: 'Golf' },
    	               { id: 'level7', game: 'Hockey' }, { id: 'level8', game: 'Rugby' },
    	               { id: 'level9', game: 'Snooker' }, { id: 'level10', game: 'Tennis' }
                      ];
                  this.fields = { dataSource: this.data, text: "game", value: "id" };
    			   this.placeholder = 'Select a game';
                  }
                   filtering(e: any) {
                        if (e.text.length < 3) { return; }
                        let  query = new ej.Query().select(['game', 'id']);
                       query = (e.text !== '') ? query.where('game', ej.FilterOperators.startsWith, e.text, true) : query;
                       e.updateData(this.data, query);
                  }
                }

    Limit character

    Change the Filter Type

    While filtering, you can change the filter type to contains, startsWith, or endsWith for string type within the filter event handler.

    In the following example, data filtering is done with endsWith type.

  • HTML
  • <input id="List" ej-combobox [dataSource]="data" [fields]="fields" width="100%" [allowFiltering]="allowFiltering" [placeholder]="placeholder" (filtering)="filtering($event)"/>
  • HTML
  • import {Component} from '@angular/core';
    
             @Component({
               selector: 'ej-app',
               templateUrl: 'app/components/combobox/combobox.component.html' //give the path file for ComboBox component html file.
              })
              export class DropDownListComponent {
                    data: Array<Object> = [];
                    fields: Object;
                    value: string;
    				placeholder: string;
                    allowFiltering: boolean = true;
                    constructor() {
                    this.data = [
                       { id: 'level1', game: 'American Football' }, { id: 'level2', game: 'Badminton' },
    	               { id: 'level3', game: 'Basketball' }, { id: 'level4', game: 'Cricket' },
    	               { id: 'level5', game: 'Football' }, { id: 'level6', game: 'Golf' },
    	               { id: 'level7', game: 'Hockey' }, { id: 'level8', game: 'Rugby' },
    	               { id: 'level9', game: 'Snooker' }, { id: 'level10', game: 'Tennis' }
                      ];
                  this.fields = { dataSource: this.data, text: "game", value: "id" };
    			   this.placeholder = 'Select a game';
                  }
                   filtering(e: any) {
                        let  query = new ej.Query().select(['game', 'id']);
                       query = (e.text !== '') ? query.where('game', ej.FilterOperators.endsWith, e.text, true) : query;
                       e.updateData(this.data, query);
                  }
                }

    endsWith

    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.

  • HTML
  • <input id="List" ej-combobox [dataSource]="data" [fields]="fields" width="100%" [allowFiltering]="allowFiltering" [placeholder]="placeholder" (filtering)="filtering($event)"/>
  • HTML
  • import {Component} from '@angular/core';
    
             @Component({
               selector: 'ej-app',
               templateUrl: 'app/components/combobox/combobox.component.html' //give the path file for ComboBox component html file.
              })
              export class DropDownListComponent {
                    data: Array<Object> = [];
                    fields: Object;
                    value: string;
    				placeholder: string;
                    allowFiltering: boolean = true;
                    constructor() {
                    this.data = [
                       { id: 'level1', game: 'American Football' }, { id: 'level2', game: 'Badminton' },
    	               { id: 'level3', game: 'Basketball' }, { id: 'level4', game: 'Cricket' },
    	               { id: 'level5', game: 'Football' }, { id: 'level6', game: 'Golf' },
    	               { id: 'level7', game: 'Hockey' }, { id: 'level8', game: 'Rugby' },
    	               { id: 'level9', game: 'Snooker' }, { id: 'level10', game: 'Tennis' }
                      ];
                  this.fields = { dataSource: this.data, text: "game", value: "id" };
    			   this.placeholder = 'Select a game';
                  }
                   filtering(e: any) {
                        let  query = new ej.Query().select(['game', 'id']);
                       query = (e.text !== '') ? query.where('game', ej.FilterOperators.startsWith, e.text, false) : query;
                       e.updateData(this.data, query);
                  }
                }

    casing