Bastiaan van den Berg

Results 26 comments of Bastiaan van den Berg

First of all, I can't make any promises. It's a project I do in my spare time, so the time spend on it varies a lot and dependents on the...

Additional to the `noOptionsFound` output event, I could add a `search` output event that simply returns the current search term if the filter input changes. This search term can then...

`encapsulation` is set to `ViewEncapsulation.None` [select](https://github.com/basvandenberg/ng-select/blob/master/src/select.component.ts) [select-dropdown](https://github.com/basvandenberg/ng-select/blob/master/src/select-dropdown.component.ts)

Maybe the css statement: ```css .selected { display: none } ``` is not specific enough? Have you tried the following as well? ```css ng-select select-dropdown .selected { display: none }...

Thanks for raising this issue. It isn't a dup, but a was aware of this. Angular's [material2](https://github.com/angular/material2) uses an overlay for dropdown menu's and dialogs. I guess they will use...

When I apply this patch and try to run the demo page I get the TypeError: ``` TypeError: Cannot set property stack of [object Object] which has only a getter...

What kind of localization support did you have in mind? All texts can be changed using input properties (placeholder, filter placeholder, not found text), and options are managed outside of...

Such an option is not available. I'll add it as feature request, but there are quit some others with higher priority, so I don't expect this to be implemented soon,...

Thanks for your contribution @nikeee . I am not sure if I correctly understand your issue. I tried to reproduce this with the following readonly array as input for the...

I created a new project with angular cli: ``` ng new simpleNgSelect ``` This project by default has `fullTemplateTypeCheck` set to `true` in `tsconfig.json`. I installed ng-select with: ``` npm...