Hi,
I have a treegrid which is using the local json file. However, I made the data-options URL remote and the tree grid stopped working. I can see a call being made to remote data file and then a 200 ok response in firebug. However, the data is not displayed.
Before:
<table id="tt" title="TreeGrid" class="easyui-treegrid" style="width:700px;height:300px"
data-options="url:'test.json',idField:'id',treeField:'code',
After(data not getting loaded from remote URL):
<table id="tt" title="TreeGrid" class="easyui-treegrid" style="width:700px;height:300px"
data-options="url:'http://remote-host/test.json',idField:'id',treeField:'code',
Could someone please help?