Thanks much ... again! That thought had occurred to me ... stringing together my items, that is ... wasn't sure if there was a shorter limit on a single string value vs. an array value ... but what you say makes perfect sense ... the JOIN is new on me (as would be a fair amount of other stuff). I believe I'll give it a try.
Any *good* way to know *when* the setArray might be working in GMail? Thanks again! On Jan 27, 3:59 am, String <[email protected]> wrote: > 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 -~----------~----~----~----~------~----~------~--~---
