Hello,

it seems that Objects and Arrays members like

  members :
  {
  
        config : new qx.data.Array()

   }

or

  members :
  {
  
        config : {}

   }

to be handeld as they where static.

If i if create to instances the Object/Array seems to be shared in the
Objects.

var foo1 = new my.foo();
foo1.config.push("hallo welt");

var foo2 =  new my.foo();
alert(foo2.config.get(0)); // hello world

Perhaps I'm blind, but I didn't find anything in the documantation about
that.

What must I do that I got really diffrent instances of a member Array or
Object?

Regards

Marc

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/OOO-and-Objects-Array-tp6389036p6389036.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to