Hey,
I'm getting this error when binding my grid to remote data source,
I have copy this code example from http://help.syncfusion.com/js/grid/data-binding#html-table, and change it to suit to my system.
I get the data and it rendered to the screen as expected, but I get the following error:
ej.web.all.js:1556 Uncaught ejWaitingPopup: methods/properties can be accessed only after plugin creation
Error: ejWaitingPopup: methods/properties can be accessed only after plugin creation
at ej.throwError (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:1554:19)
at $.fn.(anonymous function) [as ejWaitingPopup] (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:1168:25)
at Object.<anonymous> (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:89635:69)
at fire (https://local-tzelon.tradair.com:3000/lib/js/jQuery/jQuery-2.1.1.js:3073:46)
at Object.self.fireWith [as resolveWith] (https://local-tzelon.tradair.com:3000/lib/js/jQuery/jQuery-2.1.1.js:3185:29)
at Object.<anonymous> (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:1852:26)
at Object.<anonymous> (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:1889:21)
at Object.success (https://local-tzelon.tradair.com:3000/lib/js/syncfusion/ej.web.all.js:5355:23)
at fire (https://local-tzelon.tradair.com:3000/lib/js/jQuery/jQuery-2.1.1.js:3073:46)
at Object.self.fireWith [as resolveWith] (https://local-tzelon.tradair.com:3000/lib/js/jQuery/jQuery-2.1.1.js:3185:29)
Please help,
Thanks Tzelon
var dataManager = ej.DataManager({
url:"/api/Orders",
adaptor: new ej.WebApiAdaptor()
});
$("#Grid").ejGrid({
dataSource: dataManager,
allowPaging:true,
columns: ["OrderID", "EmployeeID", "CustomerID", "ShipCountry", "Freight"]
});
var dataManager = ej.DataManager({
url: "/trades",
adaptor: new ej.WebApiAdaptor()
});
$("#TreeGridContainer").ejGrid({
dataSource: dataManager,
columns: ["orderOrgName", "pAndLUSD", "ccPairName", "product", "priceSpot"]
});