[qooxdoo-devel] qooxdoo Web Toolkit - QWT 0.2.0

2008-03-14 Thread Michael Hartmeier
We are happy to announce a new release of the qooxdoo Web Toolkit. QWT is a qooxdoo-contrib project that provides an alternative, Java-only programming model for the qooxdoo JavaScript framework. Download: http://qooxdoo-contrib.sourceforge.net/distributions/qwt/releases/ Documentat

Re: [qooxdoo-devel] Re-opening Window and reloading Iframe

2008-03-14 Thread Steven M. Cherry
Hi Paul, If the uploadIFrame is the only widget that you add to the uploadWin, then the following should work: ... } else { // the IFrame will always be the first child of it's parent uploadIFrame = uploadWin.getChildren()[0]; // either reset the source, or dispose the obj

[qooxdoo-devel] new widget added to 0.7: Progressive

2008-03-14 Thread Derrell Lipman
I've just checked in to the 0.7 branch, a new widget called Progressive. This widget allows progressively following a series of instructions, with control returned to the browser periodically to allow it to update the screen or handle other pending actions. Progressive provides two distinct capab

Re: [qooxdoo-devel] DragAndDropEventHandler build problem

2008-03-14 Thread Ina Munteanu
Hello Sebastian, Thanks for your answer. I found a similar solution to include only the optional class i need like this: qx.Class.define("myClass", { extend : qx.ui.pageview.tabview.Page, include : qx.event.handler.DragAndDropHandler, () Sebastian Werner wrote: > > Hi Cornelia, > >

Re: [qooxdoo-devel] problems when setting tableModel at runtime

2008-03-14 Thread Derrell Lipman
On Fri, Mar 14, 2008 at 9:30 AM, Tobias Koller (GERMO GmbH) <[EMAIL PROTECTED]> wrote: > I have a problem when I set my tableModel and columnModels at runtime. Unfortunately, changing the column model is not supported. If you look at the documentation for the tableColumnModel property, it specifi

[qooxdoo-devel] problems when setting tableModel at runtime

2008-03-14 Thread Tobias Koller (GERMO GmbH)
Hi, I have a problem when I set my tableModel and columnModels at runtime. All "special" cellrenderer are not working (f.e. a Image-renderer just shows the real value instead of an image) . After I clicked into a cell the whole column is shown correctly again and everything works fine. D

[qooxdoo-devel] Drag & Drop between native windows

2008-03-14 Thread Christian Boulanger
Hello, in my app, I am now working with native browser windows instead of qooxdoo window widgets, which has increased the useability of the application immensely. However, this way I lost the ability to drag & drop objects from one window to the other. I was wondering if there is not a way to

Re: [qooxdoo-devel] qooxdoo at the AJAXWorld 2008

2008-03-14 Thread Rahul Sharma
Just one suggestion (discard it if you don't like) Prepare a competitive analysis and tell people that how do we compare against YUI, EXT etc. I think many people would ask you those sorts of questions. We have never really marketed Qooxdoo, start posting blogs on Ajaxian and other popular sites.

Re: [qooxdoo-devel] DragAndDropEventHandler not loaded on build

2008-03-14 Thread Helder Magalhães
Ina Munteanu wrote: > > Is there a way to include only the classes i need (in my case > DragAndDropEventHandler)? > It would be nice if you had the chance of isolating the problem so that, if it really is a qooxdoo issue, it can be fixed. :-) It's weird that qooxdoo seems to detect the need fo

Re: [qooxdoo-devel] DragAndDropEventHandler build problem

2008-03-14 Thread Sebastian Werner
Hi Cornelia, The generator supports pre-compiler like directives to add optional classes. Just insert a JavaScript comment like the following to the class which needs the DragAndDrop feature: /* #use(qx.event.handler.DragAndDropHandler) */ Please do not indent the line. The "#" needs to be the

Re: [qooxdoo-devel] Internet Explorer and qx.ui.window.Window incompatible???

2008-03-14 Thread Sandmann
Thank you very much, your guess was right :clap: But I wonder why I made this comment? I did it for some reason, but I just can´t remember... but the important thing is, it works right now! Thx Andreas! =) Fink, Andreas wrote: > > > Hi Sandman, > > if I understand your Code correctly you ad

Re: [qooxdoo-devel] Internet Explorer and qx.ui.window.Window incompatible???

2008-03-14 Thread Fink, Andreas
Hi Sandman, if I understand your Code correctly you add your modal dialog (dialogDel) to a layout which get blocked by the dialog. I think the easiest way to fix this problem is to add your modal dialog to the document instead. In your code, simple toggle the comments of these lines: //dialogDe

[qooxdoo-devel] Internet Explorer and qx.ui.window.Window incompatible???

2008-03-14 Thread Sandmann
Hi, I just wrote an Qooxdoo App and executet it in the Firefox. Everything works fine there. Trying my app in the Internet Explorer there is an error. Normally if I press a button, a window should pop up and move to the center of my screen. This window has 2 buttons that show something like "Pr

Re: [qooxdoo-devel] problems with qooxdoo in html-pages

2008-03-14 Thread westor
Fabian, I found out what my mystake was: I had the qooxdoo scripts in the header of the html page. Moving them to the body solved my problems :-) - the "optimize" and the first connection problem :-) Fabian Jakobs-2 wrote: > > westor schrieb: >> Hi Fabian, >> >> thank you for your help. I have