Hi again,

I don't see an error with Firebug, but it doesn't much look like
setArray is working either. You may well be right, that it simply is
not yet supported in the GMail container.

However, there is an extermely simple workaround. The list data type
stores the array as a pipe-delimited string, so you can simply replace
your setArray() call:

    p.setArray('lyst',l);

with a simple set() call where you join the array elements yourself:

    p.set('lyst', l.join('|'));

That's actually all setArray() does internally.


I agree that Chrome is a faster, more stable browser for all things
JS, but the state of its debugging facility is still quite  immature.
So although Firebug is itself quite buggy, and is by no means a silver
bullet, it's still the best option for JS debugging.

String
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iGoogle Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Gadgets-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to