Questions tagged [jaydata]

JayData is a standards-based, cross-platform Javascript library and a set of practices to access and manipulate data from various online and offline sources.

JayData is a standards-based, cross-platform Javascript library and a set of practices to access and manipulate data from various online and offline sources.

243 questions
74
votes
7 answers

Developing a HTML5 offline storage solution for iOS/Android in 2011

The problem: I need a device agnostic (e.g. HTML5) solution for storing and querying 250,000+ rows of data offline on a phone or tablet type device (e.g. iOS/Android). The idea being I have people working in remote areas without any cellular data…
zuallauz
  • 4,328
  • 11
  • 43
  • 54
19
votes
4 answers

How to consume OData service with Html/Javascript?

Our project currently uses Silverlight to consume an Odata service. This has made life pretty simple since we can just reference the OData service thus giving us generated service reference/entities. However there is some discussion on whether we…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
15
votes
1 answer

BreezeJS vs JayData for SPA development on ASP.NET MVC

As a web developer I've discovered the joys of working with KnockoutJS lately but when it comes to working with the server I'm pretty much left on my own. I've considered BreezeJS and JayData for their CRUD capabilities and batch operations but I'm…
Ziad
  • 1,036
  • 2
  • 21
  • 31
10
votes
1 answer

First item to insert into the mobile database isn't added

I'm using JayData in a Telerik Platform mobile application. The good people at JayData worked up this example of what I was looking to do: http://jsfiddle.net/JayData/zLV7L/ var savefeedIfNotExists = function (feed) { //create jQuery…
2GDave
  • 996
  • 8
  • 18
9
votes
1 answer

Any PHP framework implements ODATA protocol?

Is there any php framework that implements odata protocol, native or by extension? I need to use breezejs on the client and I hope I don't have to implement all the server side work of odata by myself. in case there is no such thing, is there any…
Aladdin Mhemed
  • 3,817
  • 9
  • 41
  • 56
6
votes
4 answers

dynamic queries for oData endpoint in javascript

Ok, the title is a bit of a mouthful, but it states what I'm looking for. I have an oData endpoint, and I'm interested in seeing if there are any projects out there (preferably open source, maybe based on datajs?) that let me point to the end point,…
Joel Martinez
  • 46,929
  • 26
  • 130
  • 185
6
votes
1 answer

Query in JayData

I want to query a simple sqLite database and get all the values and print them in a
. The Database Table just has person "names" and corresponding "Contact numbers" as columns. Please Explain the logic to do so.
Sourav301
  • 1,259
  • 1
  • 14
  • 24
5
votes
2 answers

Jaydata with .net Odata Server

I am working on jaydata as client and .net odata as server but when i request Server it gives me error of 501 not implemented and when i search out for it the issue was CORS [Cross Origion Resouse Sharing] is there any way to enable CORS on odata…
Numan Hanif
  • 246
  • 2
  • 17
5
votes
6 answers

Breeze.js typed entities

Is there a way to create typed entities using Breeze in the same way that JaySvcUtil works for JayData? Does this include Typescript support - also is there general Typescript support within the Breeze framework?
user1894205
  • 127
  • 2
  • 10
4
votes
1 answer

Access Sqlite database using JayData for Android/Phone Gap

I have an android application that uses a SqLite database. Now i want to create the same application using Phone Gap. I need to use Jaydata to connect to the same Sqlite Database. I have gone through the documentation but could not find out where to…
Sourav301
  • 1,259
  • 1
  • 14
  • 24
4
votes
2 answers

Update and remove operation on Jaydata

I'm trying to write a simple CRUD functionality in Jaydata, I had written this simple code for update operation: SampleClass.prototype.Load = function(input1,callback) { var param='it.Name=="'+input1+'"'; …
4
votes
3 answers

How to create an index for a table in indexedDB using JayData

We have been trying out JayData as the layer of abstraction to multiple data providers in an HTML5 web app that targets multiple platforms and devices. We also have been using the Linq2IndexedDB library with some amount of success and using that…
Hari Pachuveetil
  • 10,294
  • 3
  • 45
  • 68
3
votes
1 answer

JayData reading from OData controller throws ODataContentTypeException

I have an ODataController which seems to work fine if I just do a GET through my browser. But when I use JayData to read I get a 500 back. I can see GetItems() being called in my ODataController and it returns a valid list of Items. I but I am…
sheamus
  • 3,001
  • 4
  • 31
  • 54
3
votes
2 answers

JayData not populating objects from OData

I have a working OData endpoint where I can look at individual datapoints. (For example, localhost/myData/person(10) has the data of the 10th person.) However my objects' values in my JayData javascript are not being populated. When I…
AllieCat
  • 3,890
  • 10
  • 31
  • 45
3
votes
1 answer

Missing inverse property in asp.net webapi odata $metadata

have very simple relationship between two entities and I am trying to expose them with asp.net webapi odata controllers but it seems that something is wrong with $metadata. When I run jaydatasvcutil.exe on the $metadata I get warning:…
Jan Blaha
  • 3,069
  • 1
  • 22
  • 35
1
2 3
16 17