Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 829 - 858 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
829
The JSON.org page is now available in Portuguese. http://json.org/json-pt.html...
Douglas Crockford
douglascrock...
Offline Send Email
Jul 3, 2007
4:10 am
830
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...
rui.maciel
Offline Send Email
Jul 3, 2007
9:18 pm
831
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...
jthomaspfrank
Offline Send Email
Jul 6, 2007
9:48 pm
832
Does JSON support a datetime object? thanks [Non-text portions of this message have been removed]...
rkmr.em@...
cosmic_civilian
Offline Send Email
Jul 10, 2007
5:52 pm
833
... you can put whole functions in a json object if you like. So in short yes just make a new Date() object within you JSON object....
brucehub33
Offline Send Email
Jul 11, 2007
11:32 pm
834
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...
S.Prasannarupan
prasannarupan
Offline Send Email
Jul 12, 2007
5:12 am
835
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",...
Mert Sakarya
mertsakarya
Offline Send Email
Jul 12, 2007
5:19 am
836
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...
Mert Sakarya
mertsakarya
Offline Send Email
Jul 12, 2007
5:22 am
837
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...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jul 12, 2007
1:52 pm
838
The json.js reference implementation now produces date strings in the ISO Z format, in anticipation of the addition of Date.prototype.toISOString to...
Douglas Crockford
douglascrock...
Offline Send Email
Jul 20, 2007
3:49 pm
839
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...
ericazhangjun
Offline Send Email
Aug 1, 2007
3:48 pm
840
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...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 5, 2007
8:30 pm
841
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...
rui.maciel
Offline Send Email
Aug 8, 2007
4:42 pm
842
Hi,I have difficulties to parse this json {depth1:{depth2:{depth3:'content'}}} how to get the 'content'?? using ajax?...
genzoeri
Offline Send Email
Aug 15, 2007
1:52 am
843
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 : {...
crzy4c
Offline Send Email
Aug 15, 2007
2:10 am
844
... 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...
Martin Cooper
mfncooper
Online Now Send Email
Aug 15, 2007
2:13 am
845
I will use this for my AJAX. Using responsetext properties from XHR. ... btw, thank you for your response. I am glad, I am on the right place....
genzoeri
Offline Send Email
Aug 15, 2007
6:35 am
846
Key names must be quoted and cant start with a number?Is that right?To: json@...: mfncooper@...: Tue, 14 Aug 2007 19:11:32...
Mark Ireland
akaidr4vr
Offline Send Email
Aug 15, 2007
7:01 am
847
... This should help: eval("var responsejson = (" + responsetext + ");"); alert(responsejson['depth1']['depth2']['depth3']; ... Yes. -mike. ... michal...
Michal Migurski
michal_migurski
Offline Send Email
Aug 15, 2007
8:18 am
848
... 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...
Philip Tellis
philiptellis
Offline Send Email
Aug 16, 2007
5:05 am
849
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...
Shorthouse, David
davidpshorth...
Offline Send Email
Aug 19, 2007
7:47 pm
850
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...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 19, 2007
7:47 pm
851
The JSON.org page is now available in Dutch. http://json.org/json-nl.html...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 25, 2007
10:41 am
852
Hi, I have a JSON object which has a strcture like this : { "MainData": { "Company": { "Name":"ABC Ltd", "Address":"<address>" }, "Data": { "001": { "Name":...
mahesh_mission
Offline Send Email
Aug 26, 2007
12:59 pm
853
... avoid using eval. Just use the "in" operator" if(EmpNo in MainData.Company.Data) in checks for the existence of a key. -- hello world...
Philip Tellis
philiptellis
Offline Send Email
Aug 26, 2007
4:15 pm
854
Hi, It works fine now. Thanks a lot for your timely help!! ... function as ... present in...
mahesh_mission
Offline Send Email
Aug 26, 2007
5:25 pm
855
New constructors for JSONObject: JSONObject(Object bean) Make a new JSONObject from the getter methods of a bean. JSONObject(Object object, String names[]) ...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 28, 2007
1:28 am
856
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...
Stefan Gössner
stefangoessner
Offline Send Email
Aug 28, 2007
3:27 pm
857
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...
wefnewtrhewlkfd9
wefnewtrhewl...
Offline Send Email
Aug 30, 2007
5:18 am
858
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...
Atif Aziz
azizatif
Offline Send Email
Aug 31, 2007
11:25 pm
Messages 829 - 858 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help