Hi Martin – does the DataAdapter use HttpClient under the hood then?
e.g. using this:
const source: any = {
datatype: 'json',
datafields: [
{ name: 'CustomerId'},
{ name: 'FirstName'},
{ name: 'LastName'},
{ name: 'Email'}
],
url: 'assets/data/some-data.json'
};
const dataAdapter: any = new jqx.dataAdapter(source);
So writing a standard Http Client Interceptor in Angular would also intercept this url call?