hi
i create dropdownlist and i set dataSource to Observable<any> and this.datasource has param property that can set for pagin like PageNumber and PageSize, how can i configure ejs-dropdownlist to fetch next data when scroll down for next page?
ts:
this.dropdownList = this.dataSource.data$.pipe(map(q => q.data.items));
html :
<ejs-dropdownlist
#singleSelect
*ngIf="!this.multiSelection"
[enableRtl]="true"
[dataSource]='dropdownList | async'
[(value)]="selectedItems"
(change)="onModelChange($event)"
[fields]="fields"
[placeholder]="placeholder"
[allowFiltering]="true"
[showDropDownIcon]="true"
(filtering)="filtering($event)"
filterBarPlaceholder='Search countries'
[showClearButton]="true"
(dataBound)="dataBound($event)"
>
</ejs-dropdownlist>