I am populating Ngselect dropdown with 20 values coming while open the dropdown. and on scroll it fetches 20 more values (pagination).
Its working fine, but if I select few values from first(page) list, then scroll, and then select values form second(page) list, it will show first page selected values as [ObjectObject].
<ng-select
[items]="attribute.codedValues"
[virtualScroll]="true"
[placeholder]="attribute.isRequired ? attribute.name + ' *': attribute.name"
(focus)="hasFocus = true"
[typeahead]="cvSearchInput$"
(open)="loadCodedValues(attribute, true)"
(scrollToEnd)="fetchMoreCodedValues(attribute)"
[disableControl]="isProductAttributeDefected || attribute.isReadOnly"
[required]="attribute.isRequired"
[formControl]="specsForm.controls[attribute.id].controls.value"
(change)="removeInvalidOption(attribute.id); openDialog($event, attribute); categoryIdentifierChanged(attribute,specsForm)">
</ng-select>
ng-select Version: 1.5.2 angualr: 5.3.5