Hi,

I think I've found a bug with BaseArray, I've searched bugzilla this
time, but didn't spot anything similar.

The separator parameter is ignored when you call join, it always uses a comma.

Here is an example transcript from within Firebug:

>>> a= ['1','2','3']
["1", "2", "3"]
>>> a.join(';;;');
"1;;;2;;;3"
>>> b = new qx.type.BaseArray(a);
[["1", "2", "3"]]
>>> b.join(';;;');
"1,2,3"

Version Info:
Qooxdoo 1.5
Mozilla Firefox 3.6.24 for Ubuntu
Firebug 1.7.3


I had a look at the code in BaseArray.js, but couldn't understand it.
I'm not a JavaScript expert - which is why I like Qooxdoo for hiding
the worst of JS :)

Thanks,

Silas

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to