Michael

Results 3 comments of Michael

Any thought on this issue? Pagination within the TreeGrid component is tough. We tried to roll our own on top, but I think we'd need to fork the nebular repo.

To accomplish this, simply remove the `(keyup)="onKey($event)"` from both inputs in autocomplete.component.html and place the following in ngAfterViewInit() method of that component: `fromEvent(this.autocompleteInput.nativeElement, 'keyup').pipe(debounceTime(500)).subscribe((value: KeyboardEvent) => { this.onKey(value); });`