On Tue, Jan 20, 2009 at 8:52 AM, Martin <[email protected]> wrote:
>
> So I tried this:
> (exactly, no lines between the calls).
>
> var sess=new Object();
> sess["type"]="string";
> sess["value"]=(session!="")?''+session+'':"unknown";
> alert(sess["type"]);
>
Try adding calls to recursively display the Object, which might help isolate
where your object is getting munged:
var sess=new Object();
qx.dev.Debug.debugObject(sess, "just instantiated");
sess["type"]="string";
qx.dev.Debug.debugObject(sess, "after assigning type");
sess["value"]=(session!="")?''+session+'':"unknown";
qx.dev.Debug.debugObject(sess, "after assigning value");
alert(sess["type"]);
Derrell
------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel