We’re using the loadServerData method from the jqx.dataAdapter. This is allowing us to use our own XHR fetch calls rather than the built in grids as we have quite a bit of fetch header and other settings that is managed by a gateway service we’ve created. This works perfectly. The one issue I am seeing is that the url property is still required for the jqx.dataAdapter’s source object. We don’t need to pass in any urls since we are using available gateway classes that manage all the urls globally. Even if I use url: '' or url:null
it will not work so each time I create a grid using loadServerData to manage the XHR calls to the API, I have to put in something like url:'dummyurl'
to make it fire the loadServerData. Not a show stopper for sure but wanted to make sure to post this for anyone else who might run into this issue when using loadServerData.