Tagged Questions

0
votes
2answers
2k views

Is there a way to customize search rules in jqGrid in particular column?

I have jqgrid : jQuery("#list").jqGrid( { url : 'ajax/get', datatype : 'json', mtype : 'POST', colNames : [ 'Date', ...
0
votes
1answer
20 views

How to customize the OData server using JayData?

I'm quite new to JayData, so this may sound like a stupid question. I've read the OData server tutorial here: http://jaydata.org/blog/install-your-own-odata-server-with-nodejs-and-mongodb - it is very ...
0
votes
1answer
265 views

Unable to get value of the property 'parse': object is null or undefined

I'm trying to make a connection and download anything using oData format. The URL pointing to a service that I'm using returns a nice oData-ishly looking document. Now, I'd like to read in those ...
0
votes
1answer
273 views

Odata $filter not retrieving the values

I have a JS which has odata $select and $filter to retrieve a field called "ct_portfolioid" filtering using the ct_portfoliocode The url does not seem to return the portfolioid.The url is undefined. ...
1
vote
0answers
136 views

How to do synchronous OData requests using datajs?

I have a list of URIs and while iterating over that list I send OData GET requests via OData.read(). My problem is that those calls are asynchronous and I want them to be synchronous. Is there any ...
0
votes
0answers
11 views

Standardizing Consuming Data with WCF Json Service

I am developing my own javascript grid that use WCF Services to get data. I have put some column definition class that has provide information about filtering and sorting that will be applied on ...
0
votes
0answers
44 views

No Auth Header with DataJS Request

I am making calls to a WCF service using dataJS. As shown in the code below, I pass through Username and Password, but when debugging or monitoring the request on Fiddler, I see no authorization ...
0
votes
0answers
62 views

Handling OData any() operation using JavaScript

I am handling OData filtering by converting filters to JavaScript expressions and evaluating them against my Data. All is well so far where I had flat Data Structures. Now, I am having a collection ...