Questions tagged [ngx-select-dropdown]

ngx-select-dropdown is custom dropdown component for Angular 4+ with multiple and single selection options.

18 questions
0
votes
2 answers

ngx-select-dropdown how include debounceTime?

I need to get my [options] array filled dynamically, once the user has finished typing i need to make an API call and get my list of options. In order to avoid multiple API calls, I would like to use something like rxjs debounceTime(1000); Is there…
Niveditha Karmegam
  • 742
  • 11
  • 28
0
votes
2 answers

ngx-select-dropdown set displayKey with multiple values

I am using ngx-select-dropdown with search feature and I want to set multiple displayKey values like: firstname and lastname. Below is my config object: dropdownconfig = { displayKey: 'firstName, lastName', search: true, placeholder:…
Pathik Vejani
  • 4,263
  • 8
  • 57
  • 98
0
votes
1 answer

How to bind angular FormArray to ngx-select-dropdown

I'm writing angular7 single page web application using ReactiveForms. I need to list collection of customers in a searchable dropdown list and for that I'm trying to use ngx-select-dropdown (https://www.npmjs.com/package/ngx-select-dropdown) My…
1
2