Hi Fabian,

Be careful about where you put this stuff from ui.util.column.  I had split
it out from Table because it is useful for other classes.  In particular,
it's currently also used by Progressive's table.

Cheers,

Derrell


On Mon, Jul 28, 2008 at 8:21 AM, <[EMAIL PROTECTED]> wrote:

> Revision: 14884
>          http://qooxdoo.svn.sourceforge.net/qooxdoo/?rev=14884&view=rev
> Author:   fjakobs
> Date:     2008-07-28 12:21:36 +0000 (Mon, 28 Jul 2008)
>
> Log Message:
> -----------
> [BUG NEW 868]: Port table widget
> http://bugzilla.qooxdoo.org/show_bug.cgi?id=868
>
> rename util to util2 to port the resize behaviour
>
> Modified Paths:
> --------------
>    trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Data.js
>
>  trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/FlexWidth.js
>
>  trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Widths.js
>
> Added Paths:
> -----------
>    trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/
>
> Removed Paths:
> -------------
>    trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util/
>
> Modified:
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Data.js
> ===================================================================
> --- trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util/Data.js
>      2008-07-24 13:15:09 UTC (rev 14795)
> +++ trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Data.js
>     2008-07-28 12:21:36 UTC (rev 14884)
> @@ -25,11 +25,11 @@
>
>  /**
>  * All of the resizing information about a column.  This is the class which
> - * [EMAIL PROTECTED] qx.ui.table.util.Widths} contains in its array of 
> column data.
> + * [EMAIL PROTECTED] qx.ui.table.util2.Widths} contains in its array of 
> column data.
>  */
> -qx.Class.define("qx.ui.table.util.Data",
> +qx.Class.define("qx.ui.table.util2.Data",
>  {
> -  extend : qx.ui.core.Widget,
> +  extend : qx.legacy.ui.core.Widget,
>
>
>   construct : function()
>
> Modified:
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/FlexWidth.js
> ===================================================================
> ---
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util/FlexWidth.js
> 2008-07-24 13:15:09 UTC (rev 14795)
> +++
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/FlexWidth.js
>        2008-07-28 12:21:36 UTC (rev 14884)
> @@ -27,7 +27,7 @@
>  * Utility functions for calculating column widths based on Flex Width
>  * settings.
>  */
> -qx.Class.define("qx.ui.table.util.FlexWidth",
> +qx.Class.define("qx.ui.table.util2.FlexWidth",
>  {
>   statics :
>   {
> @@ -39,7 +39,7 @@
>      *
>      * @param columns {Array}
>      *   An array of objects derived from [EMAIL PROTECTED] 
> qx.ui.core.Widget}, but
> most
> -     *   typically of class [EMAIL PROTECTED] qx.ui.table.util.Data}.  Each 
> element
> of
> +     *   typically of class [EMAIL PROTECTED] qx.ui.table.util2.Data}.  Each 
> element
> of
>      *   the columns array is an object derived from [EMAIL PROTECTED]
> qx.ui.core.Widget}
>      *   and thus has properties width, minWidth, and maxWidth.  The width
>      *   property may take a numeric value indicating a fixed number of
> pixels
>
> Modified:
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Widths.js
> ===================================================================
> ---
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util/Widths.js
>  2008-07-24 13:15:09 UTC (rev 14795)
> +++
> trunk/qooxdoo/frontend/framework/source/class/qx/ui/table/util2/Widths.js
> 2008-07-28 12:21:36 UTC (rev 14884)
> @@ -26,7 +26,7 @@
>  /**
>  * Column width array for a whole set of columns
>  */
> -qx.Class.define("qx.ui.table.util.Widths",
> +qx.Class.define("qx.ui.table.util2.Widths",
>  {
>   extend : qx.core.Object,
>
> @@ -43,7 +43,7 @@
>     this._columnData = [ ];
>     for (var i = 0; i < numColumns; i++)
>     {
> -      this._columnData[i] = new qx.ui.table.util.Data();
> +      this._columnData[i] = new qx.ui.table.util2.Data();
>     }
>   },
>
>
>
> This was sent by the SourceForge.net collaborative development platform,
> the world's largest Open Source development site.
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> qooxdoo-commit mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-commit
>



-- 
"There is nothing more difficult to plan, more doubtful of success, nor more
dangerous to manage than the creation of a new system. For the initiator has
the enmity of all who would profit by the preservation of the old system and
merely lukewarm defenders in those who would gain by the new one."
--Machiavelli, 1513
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to