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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 707 - 736 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
707
I can't download the jsoncpp from the sourceforge because it seems that the files have been removed. So, wondering where I can find the jsoncpp ? Thanks!...
Adrian
relic1983
Offline Send Email
Feb 3, 2007
1:55 am
708
Hello, I am trying to iterate through a big JSON variable (about 1500 nodes). It works but FF pops up with the message saying the script is not responding (A...
carl.harroch
Offline Send Email
Feb 7, 2007
12:08 pm
709
The warning is meant to protect users from scripts that might be or are abusing the system resources, the solution is not to get rid of the message but to...
Matthew Morley
mpcmtechnolo...
Offline Send Email
Feb 7, 2007
2:12 pm
710
Hello Mathew, ... var jsonTest = Class.create(); jsonTest.prototype = { allData: [{attributes: {name: "", id: ""}}], myData: [{attributes: {name: "", id:...
carl.harroch
Offline Send Email
Feb 7, 2007
4:09 pm
711
... Nitpick: this isn't valid JSON, get those hash keys quoted. ... Iterating over 2000 of anything in Javascript is going to cause problems for most browsers...
Michal Migurski
michal_migurski
Offline Send Email
Feb 7, 2007
4:50 pm
712
I wonder if something like this: ...
Mark Ireland
akaidr4vr
Offline Send Email
Feb 8, 2007
12:42 am
713
Once we've had long running script on the client-side, which took about 1 minutes to execute/parse/display the data(a two dimensional array with thousands of...
mertsakarya@...
mertsakarya
Offline Send Email
Feb 8, 2007
6:17 am
714
One more thought, Why not use [ [<name, string>, <id, string>],... (array) notation instead of [{attributes: {name: "", id: ""}}], ? Mert ... From:...
mertsakarya@...
mertsakarya
Offline Send Email
Feb 8, 2007
6:18 am
715
... It was generated with the JSON addin to RoR. Will look into that later on. I try to avoid the trip back to the server and download the list just once....
carl.harroch
Offline Send Email
Feb 8, 2007
12:42 pm
716
... Yuck, file a bug report. There's no excuse for generating javascript and calling it JSON. ... Maybe, though it depends on how long it takes to parse the...
Michal Migurski
michal_migurski
Offline Send Email
Feb 8, 2007
5:17 pm
717
I will be moderating a panel that will be looking at the history and future of browsers and web standards. We might even talk about JSON. It will be February...
Douglas Crockford
douglascrock...
Offline Send Email
Feb 8, 2007
11:12 pm
718
Hi, I have a JSON structure in the browser that acts as rows of a database table. var data = [ [id:1, name:'foo', age:21], [id:2, name:'bar', age:35] ]; I show...
Peter Michaux
petermichaux
Offline Send Email
Feb 9, 2007
8:37 pm
719
Like so? var data = {[ {id:"id1", name:'foo', age:21}, {id:"id2", name:'bar', age:35} ]}; then data.["id2"].age ... ...
Mark Ireland
akaidr4vr
Offline Send Email
Feb 9, 2007
11:34 pm
720
... More like SQL. Something like SELECT * FROM data WHERE age > 30; I don't necessary mean SQL sytnax because that wouldn' work well for nested JSON...
Peter Michaux
petermichaux
Offline Send Email
Feb 9, 2007
11:48 pm
721
So loop thru data testing for data.["id2"].age > 35 and create var dataset and add the object. Have you seen Adobe Spry? ... ...
Mark Ireland
akaidr4vr
Offline Send Email
Feb 9, 2007
11:58 pm
722
... What is "id2" and why a dot before the bracket. I don't know what that is supposed to do? ... No. A quick looks says "ajax framework" what does it have to...
Peter Michaux
petermichaux
Offline Send Email
Feb 10, 2007
12:14 am
723
JSON is a data-interchange format, so unless your talking about building something that does a search through the raw strings, I'm pretty sure that doing a...
Matthew Morley
mpcmtechnolo...
Offline Send Email
Feb 10, 2007
12:25 pm
724
... matches. If ... through sets ... Baloney. The real question is the OP's original question: "Has anyone played with a way to find parts of a JSON structure...
george.jempty
Offline Send Email
Feb 10, 2007
1:27 pm
725
... Agreed, mostly. But I am not sure the case is as strong for xquery for json as it is with xml, though I can definitely see a use for it. Selectively ...
Matthew Morley
mpcmtechnolo...
Offline Send Email
Feb 10, 2007
2:16 pm
726
Now that is something I REALLY would love to attend. Will that be digitally recorded in any way to be made available sometime in the future for those of us who...
Todd
todd_kingham
Offline Send Email
Feb 11, 2007
3:35 pm
727
JsonTools http://sourceforge.net/projects/jsontools v1.01 released. JsonTools is a thread safe module based on event - event handler paradigm (like SAX...
luchkovsky
Offline Send Email
Feb 14, 2007
2:12 pm
728
... might help ... Please try JsonTools http://sourceforge.net/projects/jsontools v1.01. JsonTools include decisions for most frequent tasks with JSON model, ...
luchkovsky
Offline Send Email
Feb 14, 2007
2:15 pm
729
With Javascript when a user updates the field of a form I update my local JSON object with a "new_value" property equaling the new value entered into the...
Gabriel Landowski
gabriel_land...
Online Now Send Email
Feb 14, 2007
3:53 pm
730
Hi All, I'm having some trouble with an element of my web application with json. The short story is I am sending database as part of an ajax request. One piece...
weilandaj
Offline Send Email
Feb 14, 2007
4:15 pm
731
... I recommend you to try JsonTools http://sourceforge.net/projects/jsontools new JsonTools().setValue(object, "path", newValue) The path defines a way to...
luchkovsky
Offline Send Email
Feb 14, 2007
4:16 pm
732
... To test it by JsonTools (http://sourceforge.net/projects/jsontools): var jTools = new JsonTools(); if ( jTools.getValue(object, path) != null ) { alert(...
luchkovsky
Offline Send Email
Feb 14, 2007
4:22 pm
733
Sorry, that should read "sending data back" not "database". *goes to fetch coffee*...
weilandaj
Offline Send Email
Feb 14, 2007
4:48 pm
734
... Okay - turned brain on and got: if(json_obj.child_node.new_value != undefined) Regards...
Gabriel Landowski
gabriel_land...
Online Now Send Email
Feb 14, 2007
4:49 pm
735
Or if you're not sure if the property has ever been assigned: if ("undefined" !=== typeof json_obj.child_node.new_value) { } ... [Non-text portions of this...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Feb 14, 2007
6:19 pm
736
How are you constructing the JSON object on the serverside before u send it to the client side? I feel something is mucking up there... Could u paste that...
shalini israni
i_dint_get_t...
Offline Send Email
Feb 15, 2007
4:01 am
Messages 707 - 736 of 1408   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