A really very, very good work!
The extended OO functions (Mixins, Interfaces) and the enhanced property features are great.
Also the new appearance theme "Ext" is much more beautifuly as Classic.
I was surprised about the migration. Such a complex migration without an error - amazing!

I tryed a little with the trunc-version and i found two little errors:
* in a few classes there are calls to Widget.isEnabled()
(witch earlier was the getAlias of the enabled property in qx.core.Object and is not a property in qx.ui.core.Widget - but now there is no getAlias) in order that my application runs, i putted a function isEnable() {return getEnabled()} into Widget.js * in qx.ui.treefullcontrol.Tree is a direct access to a property value, i adapted it to the qx 0.7 property value
 that's no good manner, but i had no other idea

I attached the patches if someone needs it.

Thank you for the fabulous work!
Erich


Andreas Ecker schrieb:
Hi all,

just wanted to let you know about a tiny surprise before the Easter
break: another pre-release is available, 0.7-alpha2 !

Please see the following news entry for more information:
http://news.qooxdoo.org/another-exciting-technical-preview

Any feedback on the new features, particularly the reimplementation of
dynamic properties, is highly appreciated,

Andreas

Index: 
S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/core/Widget.js
===================================================================
--- S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/core/Widget.js 
(revision 7239)
+++ S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/core/Widget.js 
(working copy)
@@ -2105,6 +2105,14 @@
     /* ************************************************************************
        Instance data, properties and methods
     ************************************************************************ */
+    
+    /**
+     * for compaitbility only, please use getEnabled()
+     */
+    isEnabled: function()
+    {
+       return this.getEnabled();
+    },
 
     /*
     ---------------------------------------------------------------------------
Index: 
S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/treefullcontrol/Tree.js
===================================================================
--- 
S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/treefullcontrol/Tree.js
        (revision 7239)
+++ 
S:/Entw/iWomis/qooxdoo/frontend/framework/source/class/qx/ui/treefullcontrol/Tree.js
        (working copy)
@@ -424,9 +424,10 @@
      */
     getExcludeSpecificTreeLines : function()
     {
-      var vName = "excludeSpecificTreeLines";
-      var vUpName = qx.lang.String.toFirstUp(vName);
-      var vStorageField = "_value" + vUpName;
+      //var vName = "excludeSpecificTreeLines";
+      //var vUpName = qx.lang.String.toFirstUp(vName);
+      //var vStorageField = "_value" + vUpName;
+      var vStorageField = "__user$excludeSpecificTreeLines";
 
       return this[vStorageField].slice(0);
     },
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to