Searching

Generic UI grid has a built-in search feature. When a user types some text into the input grid will scan for this phrase in the data and it will present all rows which match wanted phrase.

It allows to search value in all type: GuiDataType.STRING columns. So it will work for columns that have a type specified as 'string'. Search will not take into consideration columns of type: GuiDataType.NUMBER, GuiDataType.DATE, GuiDataType.BOOLEAN, etc. To read more about types of columns see this guide Columns and their types.

It is really simple to turn on searching. You just have to set the input searching to true. Default value is false.

Example
search.component.ts
Index
Character
Real name
Abilities
1
Batman
Bruce Wayne
money
2
Flash
Barry Allen
speed
3
Superman
Clark Kent
invincible
4
Wonder Woman
Diana Prince
superhuman strength
5
Nightwing
Dick Grayson
martial arts
6
Green Lantern
Hal Jordan
Power ring
7
Green Arrow
Oliver Queen
money
8
Aquaman
Arthur Curry
can talk with fishes
9
Martian Manhunter
John Jones
telepathy
10
Captain Marvel
Billy Batson
superhuman abilities
11
Black Canary
Laurel Lance
sonic scream
12
Zatanna
Zatanna
magic
13
Robin
Damian Wayne
martial arts, gadgets
14
Supergirl
Kara Zor-El
superhuman powers
15
Batgirl
Barbara Gordon
speed, flexibility and strength
16
Cyborg
Vic Stone
high-tech gadgets
17
Kid Flash
Wally West
speed
18
Catwoman
Selina Kyle
stealthy and agile
19
Red Robin
Tim Drake
martial arts
20
John Constantine
John Constantine
sorcery
21
Raven
Rachel Roth
dark magic
22
Starfire
Koriand'r
flight and energy projection
23
Beast Boy
Garfield Logan
shape-shifting
24
Hawkgirl
Kendra Saunders
flight
25
Doctor Fate
Kent Nelson
magic
26
Red Hood
Jason Todd
martial arts
27
Firestorm
Ronnie Raymond / Martin Stein
nuclear power
28
The Atom
Ray Palmer
size-changing
29
Jonah Hex
Jonah Hex
excellent gunslinger
30
Joker
Clown Prince of Crime
deadly and unpredictable
31
Lex Luthor
Alexander Luthor
money
32
Darkseid
Darkseid
unparalleled strength
33
Sinestro
Thaal Sinestro
power ring
34
Brainiac
Vril Dox
Extremely advanced mental abilities
35
Black Adam
Teth-Adam
superhuman abilities
36
Ra's al Ghul
Head of the Demon
immortality
37
Deathstrok
Slade Wilson
enhanced strength, agility and intelligence
38
Two-Face
Harvey Dent
can flip coins
39
Vandal Savage
Vandal Savage
immortality
40
Reverse Flash
Eobard Thawne
speed
41
Doomsday
Doomsday
regenerative abilities
42
Mongul
Mongul I
superhuman abilities
43
Bizarro
Bizarro
has many duplicates
44
Riddler
Edward Nygma
excellent at creating riddles
45
Maxwell Lord
Maxwell Lord IV
mind control
46
Captain Cold
Leonard Snart
cold gun
47
Bane
Bane
good at taking steroid
48
Harley Quinn
Harleen Quinzel
spending money
49
Gorilla Grodd
Gorilla Grodd
super-intelligence
50
Lobo
Lobo
incredible strength and regeneration
import { GuiColumn, GuiSearching } from '@generic-ui/ngx-grid';

@Component({
	template: `
		<gui-grid [columns]="columns"
				  [source]="source"
				  [searching]="searching">
		</gui-grid>
	`
})
export class DocsSearchBasicComponent {

	columns: Array<GuiColumn> = [{
		header: 'Index',
		field: 'index',
		width: 60
	}, {
		header: 'Character',
		field: 'character'
	}, {
		header: 'Real name',
		field: 'name'
	}, {
		header: 'Abilities',
		field: 'abilities'
	}];

	source: Array<any>;

	searching: GuiSearching = {
		enabled: true,
		placeholder: 'Search heroes'
	};

	constructor(private dcDataService: SearchingExampleService) {
	}

	ngOnInit() {
		this.dcDataService.getHeroes()
			.subscribe(heroes => this.source = heroes);
	}

}
searching: GuiSearching = {

	enabled?: boolean;

	highlighting?: boolean;

	placeholder?: string;

	phrase?: string;
};

Search highlighting & initial phrase

The search feature allows highlighting search phrases. It is easy to enable just change the flag highlighting to true . All of the matched phrases with be highlighted by the yellow label, which makes them easy to spot.

You can also specify a starting search phrase. To do it use config property phrase. Grid will filter out values that do not fit the search phrase from the start.

Grid search allows a lot of configurations, one of them is a placeholder. It relates to the text which appears in the search input as a placeholder or suggestion.

Example
highlight.component.ts
highlight.config.ts
Index
Character
Real name
Abilities
1
Batman
Bruce Wayne
money
3
Superman
Clark Kent
invincible
4
Wonder Woman
Diana Prince
superhuman strength
8
Aquaman
Arthur Curry
can talk with fishes
9
Martian Manhunter
John Jones
telepathy
10
Captain Marvel
Billy Batson
superhuman abilities
14
Supergirl
Kara Zor-El
superhuman powers
18
Catwoman
Selina Kyle
stealthy and agile
35
Black Adam
Teth-Adam
superhuman abilities
42
Mongul
Mongul I
superhuman abilities
43
Bizarro
Bizarro
has many duplicates
import { GuiColumn, GuiSearching } from '@generic-ui/ngx-grid';

@Component({
	template: `
		<gui-grid [columns]="columns"
				  [source]="source"
				  [searching]="searching">
		</gui-grid>
	`
})
export class SearchBasicComponent {

	columns: Array<GuiColumn> = [{
		header: 'Index',
		field: 'index',
		width: 60
	}, {
		header: 'Character',
		field: 'character'
	}, {
		header: 'Real name',
		field: 'name'
	}, {
		header: 'Abilities',
		field: 'abilities'
	}];

	source: Array<any>;

	searching: GuiSearching = {
		enabled: true,
		placeholder: 'Search heroes',
		phrase: 'man',
		highlighting: true
	};

	constructor(private dcDataService: SearchingExampleService) {
	}

	ngOnInit() {
		this.dcDataService.getHeroes()
			.subscribe(heroes => this.source = heroes);
	}

}
searching: GuiSearching = {
	enabled: true,
	placeholder: 'Search heroes',
	phrase: 'man',
	highlighting: true
};

Search matcher - working with complex objects

Sometimes you need to use in the column a more complex value e.g. object, in that case, it seems natural that search requires more configuration. The grid search features work on the primitive values, so you need to specify which property in the object should be used for searching. You can do that by specifying the matcher, just like in the example below. Matcher is a function which is used by the grid to get the property from the object and use it for searching.

Example
matcher.component.ts
projects.ts
Project name
Owner
Company
Deadline
Progress
FlyTap
Fantasia Ramos
ACME Corporation
06/08/2020
75 %
Wide string
Renata Salazar
Globex Corporation
31/05/2020
68 %
Rhinestone
Esther Ruiz
Soylent Corp
11/10/2019
43 %
Striped Foxes
Ed Flores
ACME Corporation
26/06/2019
32 %
Royal
Lara Chapman
Globex Corporation
07/06/2019
30 %
Balto
Fantasia Ramos
Soylent Corp
01/09/2018
1 %
Disco Divas
Mira Cox
ACME Corporation
27/11/2018
10 %
Mad Hatter
Frances Hernandez
Globex Corporation
26/02/2020
58 %
Mad Hatter
Muriel Greene
Soylent Corp
27/02/2020
58 %
Liquid Sky
Flavia Schmidt
ACME Corporation
11/03/2019
21 %
Solid Alpha
Lara Chapman
Globex Corporation
05/02/2020
56 %
Einstein
Lucrece Nguyen
Soylent Corp
29/12/2019
52 %
Roadrunner
Lola Ruiz
ACME Corporation
20/10/2019
44 %
Dagwood
Lola Ruiz
Globex Corporation
13/11/2018
9 %
Cheerio
Cecelia Cruz
Soylent Corp
22/10/2018
6 %
SuproMax
Cecelia Cruz
ACME Corporation
04/12/2020
87 %
Orion
Samuel Howard
Globex Corporation
21/03/2020
60 %
Disco Divas
Eva Garza
Soylent Corp
28/11/2018
10 %
Top Tiger
Amanda Greene
ACME Corporation
05/07/2020
71 %
Firefly
Muriel Greene
Globex Corporation
06/01/2020
52 %
HappyMove
Eva Garza
Soylent Corp
06/08/2020
75 %
Desert Albatross
Julius Mitchell
ACME Corporation
12/12/2019
50 %
Illumina Sky
Susie Nichols
Globex Corporation
30/07/2020
74 %
Skyhawks
Otto Kennedy
Soylent Corp
18/06/2019
31 %
Disco Divas
Cecelia Cruz
ACME Corporation
27/11/2018
10 %
UrbanSuper
Norma Rose
Globex Corporation
15/08/2020
76 %
Pure Panther
Carolyn Gibson
Soylent Corp
11/01/2020
53 %
Gray Panthers
Lara Chapman
ACME Corporation
20/01/2019
16 %
White Feather
Nicholas Perez
Globex Corporation
03/08/2019
36 %
Fireball
Carolyn Gibson
Soylent Corp
05/01/2020
52 %
Parable of Crypto
Lola Ruiz
ACME Corporation
06/03/2021
97 %
Firestorm
Fannie Jones
Globex Corporation
30/12/2018
14 %
LockedinSafety
Eva Garza
Soylent Corp
04/04/2021
100 %
Antix Ant
Renata Salazar
ACME Corporation
12/10/2020
82 %
Riviera
Alma Ross
Globex Corporation
01/06/2019
30 %
Nautilus
Bertha Schmidt
Soylent Corp
14/03/2020
60 %
Whistler
Frances Hernandez
ACME Corporation
01/08/2019
36 %
Wide Stringer
Frances Hernandez
Globex Corporation
07/08/2019
37 %
Dangerous Rocks
Otto Kennedy
Soylent Corp
14/11/2018
9 %
Fusion
Nicholas Perez
ACME Corporation
09/01/2019
15 %
BrettMan
Dora Sullivan
Globex Corporation
01/08/2020
74 %
UrbanQuest
Jane Bradley
Soylent Corp
29/11/2020
87 %
Sirius
Henrietta Thomas
ACME Corporation
15/06/2019
31 %
Kryptonite
Jay Lewis
Globex Corporation
20/02/2020
57 %
Batman
Amanda Greene
Soylent Corp
10/09/2018
2 %
Rampage
Cornelia Perry
ACME Corporation
23/05/2019
29 %
Mustangs
Renata Salazar
Globex Corporation
11/04/2019
24 %
Constantine
Bertha Schmidt
Soylent Corp
03/11/2018
8 %
Mercury
Alma Ross
ACME Corporation
03/04/2019
23 %
Durango
Moses Washington
Globex Corporation
06/12/2018
11 %
import { Component } from '@angular/core';

import { GuiCellView, GuiColumn, GuiDataType, GuiSearching } from '@generic-ui/ngx-grid';

@Component({
	template: `		
		<gui-grid [columns]="columns"
				  [source]="source"
				  [maxHeight]="400"
				  [searching]="searching"></gui-grid>
	`
})
export class DocsSearchMatcherComponent {

	columns: Array<GuiColumn> = [{
		header: 'Project name',
		field: 'name'
	}, {
		header: 'Owner',
		field: 'owner',
		view: (owner: any) => {
			return '<b>' + owner.firstName + ' ' + owner.lastName + '</b>';
		},
		matcher: (owner: any) => {
			return owner.firstName + ' ' + owner.lastName;
		}
	}, {
		header: 'Company',
		field: 'company',
		type: GuiDataType.STRING
	}, {
		header: 'Deadline',
		field: 'deadline',
		type: GuiDataType.DATE
	}, {
		header: 'Progress',
		field: 'progress',
		type: GuiDataType.NUMBER,
		view: GuiCellView.PERCENTAGE
	}];

	source: Array<any> = [projects];

	searching: GuiSearching = {
		enabled: true,
		placeholder: 'Search project'
	};

}
const projects = [{
	name: 'Fusion',
	company: 'ACME Corporation',
	deadline: new Date(2020, ...),
	progress: 72,
	owner: {
		firstName: 'Bruce',
		lastName: 'Wayne'
	}
}, ...];

Searching - Inputs

InputTypeDefaultDescription
enabledbooleanfalse Enables searching feature.
highlightingbooleanfalse Enables highlighting, which marks search phrase in the grid.
placeholderstring'Search' Configures placeholder for input search field.
phrasestring- Starting search phrase for the searching feature.

Searching - Outputs

OutputTypeDescription
searchPhraseChangedEventEmitter<string>Emits search phrase typed in the search input by the user.

Related articles: