Hi Gustavo,Thank you for contacting Syncfusion support.Currently there is no support for EJ 2 Grid with PHP platform. Hence we have logged a feature report regarding this. It will be implemented in any of our upcoming main release. We will update you once this feature has got implemented.Please let us know if you have any concern.Regards,John R
|
export class CustomAdaptor extends ODataAdaptor {
processQuery(dataManager, query) {
// you can form the query based on your service
var query = super.processQuery(dataManager, query);
// get the default query and then customize the query based on your requirement and return the result
return query;
}
}
export class RemoteDataBinding extends SampleBase {
constructor() {
super(...arguments);
this.hostUrl = 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/';
this.data = new DataManager({ url: this.hostUrl, adaptor: new CustomAdaptor });
}
|