Hi,
no...I´m afraid not. :)
I´ve just unzipped the .zip-File of the 1.3 Release to be sure there is
no problem with the source control system.
In qx.io.PartLoader there is a method called getPart:
---------------------
 getPart : function(name) {
      return this._loader.getPart(name);
    }
---------------------
 
this._loader  handles the Instance of qx.Part and is while
constructing:
 
---------------------
var loader = this._loader = qx.Part.getInstance();
---------------------
 
qx.Part does not have a method called getPart(...), but has a method
calleg getParts():
 
---------------------
 getParts : function() {
      return this.__parts;
    },
---------------------
 
Maybe I´m mixed up...but...I really think this is the problem.:-)
 
Cheers,
Rob.
 
>>> Tino Butz <[email protected]> 12/10/2010 5:09 >>>
Hi,

Do you have local changes? I have just checked the corresponding code
and it seems to be all fine.

Best regards,
Tino


Am 10.12.2010 um 16:10 schrieb Robert Nimax:



Hi all,
qooxdoo 1.3:
I tried to use qx.io.PartLoader.getInstance().getPart but it throws an
error because this._load.getPart(...) is not a function which is really
true.:)
I guess the getPart-Method of qx.io.PartLoader should look like
this...
 
getPart : function(name) {
      return this._loader.getParts[name]);
 }
 
...because this._loader handles the instance of qx.Part.
Is this correct or did I get it wrong ?
 
Cheers and have a nice weekend ! 
Rob.
 
<ATT00001..txt><ATT00002..txt>





------------------------------------------------------------------------------
Oracle to DB2 Conversion Guide: Learn learn about native support for PL/SQL,
new data types, scalar functions, improved concurrency, built-in packages, 
OCI, SQL*Plus, data movement tools, best practices and more.
http://p.sf.net/sfu/oracle-sfdev2dev 
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to