Hi Jim,

Thank you for your reply. This is something like I need to do.
Actually I am trying to show a popupAtom in the execution of a button.
But before I was trying to run a progressbar. Both didn't worked, with
or without a flushGlobalQueues(). Could you help me??

var popupAtom = new qx.ui.popup.PopupAtom("", "");
popupAtom.setLocation(400, 250);
popupAtom.setBackgroundColor("#D0BD6D");
popupAtom.setBorder("black");
popupAtom.setPadding(15);
popupAtom.addToDocument();

function confirmarAvancarExecute() {

        popupAtom.show();
        popupAtom.bringToFront();

                ......................

}

var avancarButton = new qx.ui.form.Button("AVANÇAR",
"icon/22/actions/dialog-apply.png");
avancarButton = new qx.ui.form.Button("AVANÇAR",
"icon/22/actions/dialog-apply.png");
avancarButton.addEventListener("execute", confirmarAvancarExecute);
linha03Layout.add(avancarButton);


2007/10/3, Jim Hunter <[EMAIL PROTECTED]>:
> For the most part you do not need to use flushGlobalQueues() in .7.1+, I 
> actually found that my program ran better and faster when I took them all 
> out. There are only a few places where you do need to use it and one would be 
> when doing a progress bar. But since you didn't supply any of your code we 
> have no idea where your problem lies. If you provide your code we can help 
> you figure out what might be going wrong.
>
> Jim
>
>
>
>
> On 10/3/07, Enaldo Amorim <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hi,
> >
> > I'm developing an app with user login. When the user type the username and 
> > password and then click on the login button I try to show a popupAtom or a 
> > progressbar but it doesn't work. It doesn't work with 
> > qx.ui.coreWidget.flushGlobalQueues(), too. I don't know if I am using 
> > flushGlobalQueues() in a wrong place.
> >
> > Could anyone tell me how can I make this work, please???
> >
> > Att.
> >
> > Enaldo Amorim
> > -------------------------------------------------------------------------
> > This SF.net email is sponsored by: Splunk Inc.
> > Still grepping through log files to find problems?  Stop.
> > Now Search log events and configuration files using AJAX and a browser.
> > Download your FREE copy of Splunk now >> http://get.splunk.com/
> > _______________________________________________
> > qooxdoo-devel mailing list
> > qooxdoo-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> >
> >
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> _______________________________________________
> qooxdoo-devel mailing list
> qooxdoo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to