1
vote
0answers
5 views
ASP.NET Javascript Converter does not seem to be invoked
I have an ASP.NET 3.5 SP1 web application that uses a custom JavaScriptConverter. The code used to work at some time in the past, but has stopped working. I do not know what changes have happened in …
1
vote
0answers
36 views
returning JSON response to a ajax call prompts file download containing the response
i am submitting a from using jQuery ajax, and server is returning json response. but instead of the script, parsing the json result, the browser is prompting me to download the json response.
I have …
2
votes
3answers
46 views
Encoding issue: Cocoa Error 261?
So I'm fetching a JSON string from a php script in my iPhone app using:
NSURL *baseURL = [NSURL URLWithString:@"test.php"];
NSError *encodeError = [[NSError alloc] init];
NSString *jsonString = …
0
votes
5answers
32 views
Passing complex data over URL with grace
I'm thinking about using something like:
<script src="http://www.example.com/?key={"param":"value"}">
As you can see in the example above a JSON formatted string is being passed over the src …
0
votes
0answers
35 views
Is there free text editor for JSON pretty print
Is there free text editor with JSON formatting capabilities like XML Tools for Notepad++?
I tested some of Adobe AIR editors and all editors are completely lack of other must have text editing …
1
vote
2answers
70 views
Rails and JSON: a beginner’s question
I'm looking for a simple way to parse JSON, extract a value and write it into a db in Rails.
Explicitly what I'm looking for is a way to extract a shortUrl from the JSON returned from the bit.ly API: …
0
votes
1answer
14 views
dojo newbie read json response from web service
i have a webservice that is returning this response :
<string xmlns="http://tempuri.org/">{ "H...[ { "ID":"1","Name":"Test"} ]}</string>
when i try to get the response back, i keep …
0
votes
2answers
27 views
Style JSON results from a search
If I make the search:
http://www.google.com/dictionary/json?callback=dict_api.callbacks.id100&q=school&sl=en&tl=en&restrict=pr%2Cde&client=te
I end up with a response in JSON. I …
3
votes
2answers
47 views
json find in javascript
Hi all,
Is there a better way other than looping to find data in json. Its for edit and delete.
for(var k in objJsonResp) {
if (objJsonResp[k].txtId == id) {
if (action == 'delete') {
…
0
votes
2answers
14 views
Refer to an object inside an $.getJSON() with append
Hi,
i try to get a json list and append it
$.getJSON("url",
function(data){
$('#tbl').append("<li id="listitem">asd</li>);
});
It works but i cant access the li …
0
votes
2answers
24 views
efficient creation of json from mysql output - grouping within uniques
I believe I have been writing some inefficient code here, but can't seem to figure out a more efficient way of writting it.
This often happens with json output, though I've had the issue with some …
1
vote
3answers
70 views
How can I access data from a Ruby on Rails application externally?
I'm trying to work with the data in my Rails application from within a separate Ruby script.
I read this forum post in which some people suggest that the best way to work with your data is to …
0
votes
2answers
37 views
javascript manipulate json object
For example, I have the following JSON object json_obj1
json_obj1 = {x:{id:1,bars:{show:true,barWidth:0.4}}}
Now, how could I add the following object (using javascript):
…
0
votes
3answers
39 views
Parsing JSON like data interchange format
I'd like to use a data interchange format that uses no quotation marks. Maybe something based on JSON:
{param:value,param:value,param:{[{param:value,param:value}, {param:value,param:value}]}}
How …
1
vote
2answers
43 views
Looping javascript get requests
I've got a javascript 101 question.
I'm using a nice graphing library (flot), and plotting multiple graphs on a single page. Each graph is a div, with a attribute set that tells the graph where to …
