jaydata
jaydata copied to clipboard
Notice: this library isn't maintained anymore
I am sending a ajax request from angular based post method to ODataController action method.If i am sending a simple string,that is caught by OdataController action method.Sending an array fails...
with code: ``` var ds = ctx.Product .filter(function (product) { return product.Active; }) .asKendoDataSource(); ``` when add filter using kendo´s dataSource ``` ds.filter({ field: "Name", operator: "startswith", value: "abc" });...
I have this JayData query (it can be checked at JSLQ playground): northwind.Products .filter( function( product ) { return product.ProductName.toLowerCase() in ['tofu']; } ) .toArray( function( products ) { console.dir(...
Support for mongoDB embedded relationship is not transparent. It doesn't work with inverse relations
If you define your data model with relationships using the classic inverse property paradigm, then it won't be possible to retrieve the entity using an "include relationship" if mongoDB is...
I've posted my theory about why my app may have memory leaks by using jaydata and its knockout plugin http://stackoverflow.com/questions/22582961/jaydata-knockout-memory-leak Hope some developer (which specifically wrote knockout.js plugin) can take...
The jaydata script url will be like: bower_components/infra-client/app/scripts/vendor/jaydata/jaydata.js?bust=xxxx. The function getUrl() don't recognize this, so the provider URL be incorrectly parsed to: 'jaydataproviders/' + providerName + 'Provider.js' getUrl Code: ```...
The _getCacheKey function in the angular.js module uses getJSON to create the cache key. This can cause circular reference exceptions depending on the contents of query.expression.
Hi, I face a wierd sorting if I use a KendoUI grid together with jayData and indexedDB. (I tested in latest Chrome browser on desktop and Android tablet) Please take...
Hi, I have a problem to show nested properties in Kendo grid. Example: I "Object 1" with the " Name" and " Object 2" real estate " Price " ....
I started a new project with odata-server and followed the tutorial here: http://jaydata.org/blog/how-to-set-up-a-nodejs-odata-endpoint-with-odata-server After following the tutorial, I get the following error on the server side: ``` TypeError: Object [object...