We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Can I get other value from Datamanager ?

I am using datamanager to binding remote data, 


In my webAPI, I return follow:


How can I get the currentLogon and allUser ?




1 Reply

MS Madhu Sudhanan P Syncfusion Team December 5, 2018 11:14 AM UTC

Hi Lorryl, 

Thanks for contacting Syncfusion support. 

You can access the additional data from the request by overriding the processResponse method of the WebApiAdaptor. Now the custom adaptor to intercept the response data before processing will be as follows. 


import { DataManager, WebApiAdaptor, DataResult, DataOptions, Query, CrudOptions } from '@syncfusion/ej2-data'; 
import { Ajax } from '@syncfusion/ej2-base'; 
 
class CustomAdaptor extends WebApiAdaptor { 
 
  public processResponse(data: DataResult, ds?: DataOptions,  
    query?: Query, xhr?: XMLHttpRequest, request?: Ajax, changes?: CrudOptions): Object { 
          let currentLogon = data["currentLogon"]; 
          let allUser = data["allUser"]; 
 
          return super.processResponse(data, ds, query, xhr, request, changes); 
        } 
} 
 
@Component({ 
    selector: 'control-content', 
    templateUrl: 'remote-data.html' 
}) 
export class DataBindingComponent implements OnInit { 
   ..... 
 
    ngOnInit(): void { 
        this.data = new DataManager({ url: SERVICE_URI + 'api/Orders', adaptor: new CustomAdaptor }); 
    } 
} 



Regards, 
Madhu Sudhanan P   


Loader.
Live Chat Icon For mobile
Up arrow icon