I have following method in typescript, I need to bind to angular grid
CountryService
GetCountries() { return this.http.get(`http
You will need to subscribe to your observables:
this.CountryService.GetCountries() .subscribe(countries => { this.myGridOptions.rowData = countries as CountryData[] })
And, in your html, wherever needed, you can pass the async pipe to it.
async