I'm proud to announce that MJSON v0.4 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
I've just posted a new JSON editor that let's you view and edit JSOn from a tree view here: http://www.thomasfrank.se/json_editor.html I hope it might be of...
Does this mean that Date objects created using new Date() can be directly mapped to Java Objects? Can the date object created this way be formatted into...
Hi, JSON does not support either datetime object or function object. Look at BNF on http://www.json.org/ how "value" is defined. It contains, ["string",...
You can write any date data as a string in a JSON document, then if you are using Java, C# or Javascript (or any other), you can use that language's, DateTime...
Basically Dates are encoded as ISO 8601 strings by default (but this can be customized), and a "hook" or callback function allows you to deserialize them (or...
The json.js reference implementation now produces date strings in the ISO Z format, in anticipation of the addition of Date.prototype.toISOString to...
Hi, Now I built some mashup using JSON. Sometimes, I want to block the script to be executed. I want to remove the script dynamically added to prevent it from...
I changed the way that json.js calls the hasOwnProperty method. A design flaw in JavaScript causes hasOwnProperty to fail when an object contains a property...
I'm proud to announce that MJSON v0.5 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
well you don't get "content" using ajax. You get "content" using javascript... if that json string was assigned to a variable foo... var foo = {depth1 : {...
... That's not valid JSON, for two reasons: 1) Key names are strings, and must be quoted as such. 2) Strings must be quoted with double quotes, not single...
... Ugh, don't do that. Apart from screwing with the scope of responsejson, it also causes a security problem, and it's overkill. If you must use eval, do it...
Hello folks, First, I'm relatively new to working with JSON so please bear with me. Here's the situation: I am attempting to use multiple callbacks all from...
The toJSONString methods can now take an optional whitelist parameter, an array of strings. It is used to select the properties that will be included in the...
Hi, I have a JSON object which has a strcture like this : { "MainData": { "Company": { "Name":"ABC Ltd", "Address":"<address>" }, "Data": { "001": { "Name":...
New constructors for JSONObject: JSONObject(Object bean) Make a new JSONObject from the getter methods of a bean. JSONObject(Object object, String names[]) ...
In the current process to improve JSONT I implemented a lightweight component JSONPath, which compares a lot to XPath. You can download it for Javascript and...
JSONV- open-source format, based on jsons formats, as alternative to xml,css,xslt,rdf,owl,html presentation of information for the dynamic forming and...
JSONPath looks very promising and close in spirit to the simplicity and effectiveness of JSON. I just finished an initial port and implementation in C# (should...