Hi,
After upgrading to Angular 8 from 7 the grid or more specifically UrlAdaptor stopped working (see screenshots below).
btw.
i have already tried to switch from es2015 to es5 and it did not help.
any idea how to fix this problem?
thanks
viktor
class SongsUrlAdaptor extends UrlAdaptor {
constructor() {
super();
}
processResponse(): DataResult {
const original = super.processResponse.apply(this, arguments);
const songs = original.result.map((item) => { return new Song(item); });
return {
result: songs,
count: original.count
};
}
}