1
vote
4answers
37 views
Access dynamically named JavaScript Objects?
Hi,
I have a JS Object:
var testObj = new Object();
that has a property called volume1, so
testObj.volume1
has a value. How would I go about accessing that property by using something along the …
1
vote
2answers
78 views
Cocoa JSON - Check whether array or dictionary
Hi,
I am using the Cocoa JSON framework ( http://code.google.com/p/json-framework/ ) to communicate with an API.
The problem is that the API returns a dictionary if there is an error but returns an …
0
votes
2answers
22 views
How can I get Riak to store images or binary data?
Can Riak be used to store images or binary data? It seems to only be able to store JSON documents, is this a correct assumption?
0
votes
2answers
23 views
ASP.NET MVC 2 One Route Works, One Route Doesn’t
I have two routes in my ASP.NET MVC application.
The first is working fine - it's an ActionResult that returns a view.
The second is on the same controller and is an ActionResult that returns a Json …
0
votes
1answer
15 views
Using respond_to … format.json and jQuery Form Plugin by malsup
Hello all,
I'm having a tad bit of trouble getting the jQuery Form Plugin to work properly with a file-upload field. When I use the plugin to submit the form without a file-upload field, the …
0
votes
1answer
21 views
how do you convert a string into a Json object to return to a jquery getJson call
i have code in csharp that returns this string:
{'dateTimeFormat': 'iso8601',
'wikiURL': "http://simile.mit.edu/shelf/",
'wikiSection': "Simile Cubism Timeline",
'events' : [
{'start': '1924',
…
0
votes
3answers
71 views
How to use regular expression in json(PHP) ?
Hello,
Now i have a json code like this:
{"1":
{
"text":"e1",
"children":
{
"1":
{
"text":"e1_site1",
"children":
…
0
votes
0answers
7 views
How to integrate Spring WebFlow and Tiles with different Views (Json, etc.)
I'm using WebFlow and Tiles. All the pages are served as html.
Now I need to integrate a Json view. When the server receives an http-header accept 'application/json' a JsonView should be used instead …
3
votes
5answers
50 views
Good javascript library for drawing charts using json…
Can you suggest me some of good javascript libraries for drawing charts with json data...
I thought of using Jqplot chart plugin for jquery javascript library...
Some more would be useful...
EDIT:
…
5
votes
6answers
789 views
Can you use a trailing comma in a JSON object?
When manually generating a JSON object or array, it's often easier to leave a trailing comma on the last item in the object or array. For example, code to output from an array of strings might look …
2
votes
2answers
74 views
improve performance in ajax request
hello all
i´m doing an ajax request using jQuery and asp.net on this way:
$.ajaxSetup({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json"
});
$.ajax({
…
0
votes
1answer
26 views
web service returns response in json,how to parse that in j2me
i am creating a mobile application using j2me.
here i interact with webservices.
the response returned is in json.
how to parse it and get(store in a variable) value returned from it...
i m new to it …
0
votes
1answer
16 views
dojo.data.ItemFileReadStore + dojox.grid.DataGrid + 100% width and height
I want a dojox.grid.DataGrid with a dojo.data.ItemFileReadStore as the data store. I want it to fill the entire screen. I don't want to specify dimensions in pixels. All the examples that I've seen …
0
votes
1answer
41 views
Utilising JSON values in Javascript
I'm originally a PHP programmer and have been struggling with this for at least 2 whole 9-to-5 days now. I've come a long way but I seem to have gotten stuck trying to figure out the last bit. It …
0
votes
4answers
74 views
JSON and Backslash
Can anyone shed any light as to why my JSON is coming out below, with the extra backslashes. I am using ASP.net MVC to serialise a datatable, when I debug in Visual studio it all looks ok but when I …
