JSON (JavaScript Object Notation) is a lightweight data exchange format inspired by JavaScript object literals. It is often used with JavaScript, Ajax, and RESTful web services but is completely language independent.
0
votes
0answers
7 views
How to combine to variables from MySQL query using PHP
OK I'm querying my database calling a PHP script and it is current output has latitude and longitude separate. I found a tutorial to add makers to my google map if they were one variable they gave an ...
0
votes
2answers
23 views
Trying to create a json class in my application
I try to build a json class to my application and i dont know why it isn't working:
http://pastebin.com/A9Wr9v0m
I need help! Thanks!
0
votes
0answers
18 views
Flot graph not displaying weeks as intended [on hold]
I have a flot graph in which i would like to display weeks in the x-axis and price in the y-axis.
There's a gap in between where the year changes, anyone have a solution to this problem?
Here is a ...
-1
votes
0answers
33 views
My program crashes when I try to stuff even moderate amount of data in a json_t object(jansson)
I am using jansson JSON library in my code. It has been working well for quite some time but yesterday, I observed that when I try to stuff too much of data in the json_t object, the code starts ...
1
vote
2answers
40 views
How can I format date using json.SerializerSettings.Converters to look like 1288323623006
I am currently using the following date filter in my WebAPI application:
json.SerializerSettings.Converters.Add(
new IsoDateTimeConverter { DateTimeFormat = "dd-MM-yyyy hh:mm" });
I started to ...
1
vote
1answer
13 views
Can a single, stand-alone literal form a valid JSON “document”?
For example, is this supposed to be a valid JSON document?
"foo"
The grammar specs at json.org isn't entirely clear. I don't think it is said anywhere in the specs that everything must be in a {} ...
0
votes
0answers
6 views
ODATA TYPE CASTING-URL CONVENTIONS
I am using odata url conventions to take data from wcf dataservice using entity model. I have a tinyint column in my DB and it will return like true/false in odata result.But I need the exact DB ...
-4
votes
0answers
20 views
how to retrieve data from json to html? i need step by step [on hold]
I was designing html form, that has some login page and also reports, that page data was retrieve from json. please help me.
0
votes
1answer
10 views
Formatting data for use with JSON and D3.js
I have the following data in my MySQL database. These three columns are a subset of a table that I have selected using a query.
Value Date Time
230.8 13/08/08 ...
0
votes
0answers
15 views
Volley parsing giving error
I am having problem with parsing Json through volley here is my logcat
08-13 06:05:55.523: D/Volley(902): [134] BasicNetwork.logSlowRequests: HTTP response for request=<[ ] ...
0
votes
1answer
19 views
Parsing JSON Array Object in ROR
I am trying to parse a JSON Object to insert values in table(MySQL). JSON is recived at server but it is unable to read the values to be inserted. Its inserting NULL values.
Below is snapshot from my ...
0
votes
0answers
7 views
this ajax json response can be xss?
Hi i have this ajax response :
{"0":{"error":"uname","message":" \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d9\u05e0\u05d5 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea ...
0
votes
0answers
25 views
JSON string character position
I am using JSON.net to parse a JSON string. I wish to find the character position that matches the Path property of a JToken in this JSON string.
I've seen there are properties like LineNumber and ...
1
vote
1answer
23 views
How To Remove Unwanted JSON Node Using KnockoutJS
I am having problem to post json data because i have no idea how to remove one of json node (in this case ServiceOptions) during the ajax post back.
first this is my HTML:
<h3>Company ...
0
votes
1answer
11 views
Plot Chart Using Flot library in MVC4.0
I am trying to load a jquery chart (FLOT), but struggling a lot while assigning datasource(Json) to chart in MVC4.0
Below code I am using to plot chart. I have used temp.var d2,d3,d4 and it shows ...