Hi,
I have some trouble to use the UrlAdaptor to get remote data.
I make a very simple test to retrieve data:
<code>
var data = new ej.data.DataManager({
url: 'http://localhost:8086/portail/jsp/tst_synch_edit_donne.jsp',
adaptor: new ej.data.UrlAdaptor(),
offline:true
})
var grid = new ej.grids.Grid ({
dataSource: data
});
grid.appendTo('#Grid');
</code>
Doing this, I got the following error :
Even if it seems like I retrieve tha data when I check the dataManager object:
Do you have a clue to resolve this problem?
Thanks.