{"id":2320,"date":"2022-07-16T18:11:24","date_gmt":"2022-07-16T13:11:24","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=2320"},"modified":"2022-09-18T14:05:39","modified_gmt":"2022-09-18T09:05:39","slug":"angular13-material-select-dropdown-with-search-input-field","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/","title":{"rendered":"Angular 13 Material Select Dropdown with Search Input Field"},"content":{"rendered":"\n<p>In this tutorial, I will teach you how to make <strong>Angular Material Select\/Dropdown with Search<\/strong>. We will use <a href=\"https:\/\/github.com\/bithost-gmbh\/ngx-mat-select-search\" target=\"_blank\" rel=\"noreferrer noopener\">NgxMatSelectSearch<\/a> Angular component. Basically, it provides an input field for searching\/filtering <a href=\"https:\/\/material.angular.io\/components\/select\/overview\" target=\"_blank\" rel=\"noreferrer noopener\">MatSelect<\/a> options of the Angular Material library.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Try it yourself<\/h2>\n\n\n\n<p>You can try the Angular 13 Material <strong>select\/dropdown search input field<\/strong> widget online using the button given below. The complete TypeScript and HTML5 source code of this project is also given below.<\/p>\n\n\n<p><a class=\"ep_link_major\" href=\"https:\/\/stackblitz.com\/github\/bithost-gmbh\/ngx-mat-select-search-example?file=src%2Fapp%2Fapp.component.html\" target=\"_blank\" rel=\"noopener\">Live Demo<\/a><\/p>\n\n\n<p><strong>Important Note<\/strong>: This project is meant as a temporary implementation of&nbsp;<a href=\"https:\/\/github.com\/angular\/components\/issues\/5697\">angular\/components#5697<\/a>. The goal is to have an implementation in the official Angular Material repository, once&nbsp;<a href=\"https:\/\/github.com\/angular\/components\/pull\/7835\">angular\/components#7835<\/a>&nbsp;is merged.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to use it?<\/h2>\n\n\n\n<p>Install&nbsp;<code>ngx-mat-select-search<\/code>&nbsp;in your project:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm install ngx-mat-select-search<\/pre><\/div>\n\n\n\n<p>Import the&nbsp;<code>NgxMatSelectSearchModule<\/code>&nbsp;e.g. in your&nbsp;<code>app.module.ts<\/code>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;application\/typescript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;TypeScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;typescript&quot;}\">import { MatSelectModule } from '@angular\/material';\nimport { NgxMatSelectSearchModule } from 'ngx-mat-select-search';\n\n@NgModule({\n  imports: [\n    ...\n    MatSelectModule,\n    NgxMatSelectSearchModule\n  ],\n})\nexport class AppModule {}<\/pre><\/div>\n\n\n\n<p>Use the&nbsp;<code>ngx-mat-select-search<\/code>&nbsp;component inside a&nbsp;<code>mat-select<\/code>&nbsp;element by placing it inside a&nbsp;<code>&lt;mat-option&gt;<\/code>&nbsp;element:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;mat-form-field&gt;\n  &lt;mat-select [formControl]=&quot;bankCtrl&quot; placeholder=&quot;Bank&quot; #singleSelect&gt;\n    &lt;mat-option&gt;\n      &lt;ngx-mat-select-search [formControl]=&quot;bankFilterCtrl&quot;&gt;&lt;\/ngx-mat-select-search&gt;\n    &lt;\/mat-option&gt;\n    &lt;mat-option *ngFor=&quot;let bank of filteredBanks | async&quot; [value]=&quot;bank&quot;&gt;\n      {{bank.name}}\n    &lt;\/mat-option&gt;\n  &lt;\/mat-select&gt;\n&lt;\/mat-form-field&gt;<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;ngx-mat-select-search ngModel (ngModelChange)=&quot;filterMyOptions($event)&quot;&gt;<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;ngx-mat-select-search [formControl]=&quot;bankFilterCtrl&quot; \n                       placeholderLabel=&quot;Find bank...&quot; \n                       noEntriesFoundLabel=&quot;'no matching bank found'&quot;&gt;&lt;\/ngx-mat-select-search&gt;<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Compatibility<\/h2>\n\n\n\n<p><strong>Current release<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>@angular\/core: ^12.0.0 || ^13.0.0 || ^14.0.0<\/li><li>@angular\/material: ^12.0.0 || ^13.0.0 || ^14.0.0<\/li><\/ul>\n\n\n\n<p><strong>Version&nbsp;<a href=\"https:\/\/github.com\/bithost-gmbh\/ngx-mat-select-search\/tree\/3.3.3\" target=\"_blank\" rel=\"noreferrer noopener\"><code>3.3.3<\/code><\/a><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>@angular\/core: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0<\/li><li>@angular\/material: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0<\/li><\/ul>\n\n\n\n<p><strong>Version&nbsp;<a href=\"https:\/\/github.com\/bithost-gmbh\/ngx-mat-select-search\/tree\/1.8.0\" target=\"_blank\" rel=\"noreferrer noopener\"><code>1.8.0<\/code><\/a><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>@angular\/core: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0<\/li><li>@angular\/material: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">API<\/h2>\n\n\n\n<p><span style=\"color: rgb(74, 74, 74); font-family: Comfortaa; white-space: normal;\">The&nbsp;<\/span><code style=\"box-sizing: border-box; border: 0px; outline: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; vertical-align: baseline; font-family: monospace, monospace; font-size: 16px; color: rgb(32, 128, 173); white-space: normal; background-color: rgb(255, 255, 255);\">MatSelectSearchComponent<\/code><span style=\"color: rgb(74, 74, 74); font-family: Comfortaa; white-space: normal;\">&nbsp;implements the&nbsp;<\/span><a href=\"https:\/\/angular.io\/api\/forms\/ControlValueAccessor\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">ControlValueAccessor<\/a><span style=\"color: rgb(74, 74, 74); font-family: Comfortaa; white-space: normal;\">&nbsp;interface. Furthermore, it provides the following inputs:<\/span><\/p>\n\n\n\n<p><strong>Inputs<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;application\/typescript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;TypeScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;typescript&quot;}\">  \/** Label of the search placeholder *\/\n  @Input() placeholderLabel = 'Suche';\n\n  \/** Type of the search input field *\/\n  @Input() type = 'text';\n\n  \/** Font-based icon used for displaying Close-Icon *\/\n  @Input() closeIcon = 'close';\n\n  \/** Svg-based icon used for displaying Close-Icon. If set, closeIcon is overridden *\/\n  @Input() closeSvgIcon?: string;\n\n  \/** Label to be shown when no entries are found. Set to null if no message should be shown. *\/\n  @Input() noEntriesFoundLabel = 'Keine Optionen gefunden';\n\n  \/**\n    * Whether or not the search field should be cleared after the dropdown menu is closed.\n    * Useful for server-side filtering. See [#3](https:\/\/github.com\/bithost-gmbh\/ngx-mat-select-search\/issues\/3)\n    *\/\n  @Input() clearSearchInput = true;\n\n  \/** Whether to show the search-in-progress indicator *\/\n  @Input() searching = false;\n\n  \/** Disables initial focusing of the input field *\/\n  @Input() disableInitialFocus = false;\n\n  \/** Enable clear input on escape pressed *\/\n  @Input() enableClearOnEscapePressed = false;\n\n  \/**\n   * Prevents home \/ end key being propagated to mat-select,\n   * allowing to move the cursor within the search input instead of navigating the options\n   *\/\n  @Input() preventHomeEndKeyPropagation = false;\n\n  \/** Disables scrolling to active options when option list changes. Useful for server-side search *\/\n  @Input() disableScrollToActiveOnOptionsChanged = false;\n\n  \/** Adds 508 screen reader support for search box *\/\n  @Input() ariaLabel = 'dropdown search';\n\n  \/** Whether to show Select All Checkbox (for mat-select[multi=true]) *\/\n  @Input() showToggleAllCheckbox = false;\n\n  \/** select all checkbox checked state *\/\n  @Input() toggleAllCheckboxChecked = false;\n\n  \/** select all checkbox indeterminate state *\/\n  @Input() toggleAllCheckboxIndeterminate = false;\n\n  \/** Display a message in a tooltip on the toggle-all checkbox *\/\n  @Input() toggleAllCheckboxTooltipMessage = '';\n\n  \/** Define the position of the tooltip on the toggle-all checkbox. *\/\n  @Input() toogleAllCheckboxTooltipPosition: 'left' | 'right' | 'above' | 'below' | 'before' | 'after' = 'below';\n\n  \/** Show\/Hide the search clear button of the search input *\/\n  @Input() hideClearSearchButton = false;\n\n  \/** \n   * Always restore selected options on selectionChange for mode multi (e.g. for lazy loading\/infinity scrolling). \n   * Defaults to false, so selected options are only restored while filtering is active. \n   *\/\n  @Input() alwaysRestoreSelectedOptionsMulti = false;\n\n  \/**\n  *  Text that is appended to the currently active item label announced by screen readers, informing the user of the current index, value and total\n  *  options.\n  *  eg: Bank R (Germany) 1 of 6\n  *\/\n  @Input() indexAndLengthScreenReaderText = ' of ';\n  \n  \/** Output emitter to send to parent component with the toggle all boolean *\/\n  @Output() toggleAll = new EventEmitter&lt;boolean&gt;();\n\n<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>If you want to add a <strong>searchable select dropdown<\/strong> in your Angular app then the above source code will be very helpful. Basically, we used the <code>NgxMatSelectSearch<\/code> Angular component to seach\/filter data inside a dropdown whereas for designing we used <strong>Google Material design library<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically, it provides an input field for searching\/filtering MatSelect options of the Angular Material library. Try it yourself You can try the Angular 13 Material select\/dropdown search input field widget online using the button &#8230; <a title=\"Angular 13 Material Select Dropdown with Search Input Field\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/\" aria-label=\"Read more about Angular 13 Material Select Dropdown with Search Input Field\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":2321,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-2320","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Angular 13 Material Select Dropdown with Search Input Field<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Angular 13 Material Select Dropdown with Search Input Field\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-16T13:11:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-18T09:05:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Angular 13 Material Select Dropdown with Search Input Field","description":"In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/","og_locale":"en_US","og_type":"article","og_title":"Angular 13 Material Select Dropdown with Search Input Field","og_description":"In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically,","og_url":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-07-16T13:11:24+00:00","article_modified_time":"2022-09-18T09:05:39+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Angular 13 Material Select Dropdown with Search Input Field","datePublished":"2022-07-16T13:11:24+00:00","dateModified":"2022-09-18T09:05:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/"},"wordCount":235,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/","url":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/","name":"Angular 13 Material Select Dropdown with Search Input Field","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg","datePublished":"2022-07-16T13:11:24+00:00","dateModified":"2022-09-18T09:05:39+00:00","description":"In this tutorial, I will teach you how to make Angular Material Select\/Dropdown with Search. We will use NgxMatSelectSearch Angular component. Basically,","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/angular_dropdown_with_search.jpg","width":880,"height":495,"caption":"Angular 13 Material Select Dropdown with Search Input Field"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/angular13-material-select-dropdown-with-search-input-field\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Angular 13 Material Select Dropdown with Search Input Field"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2320","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=2320"}],"version-history":[{"count":2,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2320\/revisions"}],"predecessor-version":[{"id":3344,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2320\/revisions\/3344"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/2321"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=2320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=2320"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=2320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}