I don't know if you read my answer:
I would propose to but the BusyIndicator inside a dialog. The busyIndicator 
itself is just an atom, which can be placed inside the page directly or inside 
a popup.
If will not be shown as a dialog by itself.

Just show it, before calling the DB, and hide it when completed/aborted/etc 
occurs:


 // EXAMPLE WIDGETS
      var busyIndicator = new qx.ui.mobile.dialog.BusyIndicator("Please 
wait...");
      this.__busyPopup = new qx.ui.mobile.dialog.Popup(busyIndicator);

.

Am 18.02.2014 um 16:54 schrieb Jesús 
<je...@mieresdelcamin.es<mailto:je...@mieresdelcamin.es>>:

Hi,

Yes, i need make a "Please wait" in top window while the sql query is
execute, ex.

Init "Please wait"

var Db= new pruebas_moviles.consultas();
Db.consulta( this.Sql, this.Comandos);

Db.addListener( "completed", function( ev)
{
this.sql_reply= Db.datos;
this.fireEvent( "consulta_realizada");
                               Finish "Please wait"
}, this);

In the sql object  http://tinyurl.com/n97fnzd <http://tinyurl.com/n97fnzd>
i know the reply of server:

               "completed" : "qx.event.type.Event",
"aborted":  "qx.event.type.Event",
"failed":  "qx.event.type.Event",
"timeout":  "qx.event.type.Event"

And in the "Please wait" i think put state of reply ¿?.

The problem for me is put this "Please wait" in visible top window.......

Sorry for me not english, ;))

Best Regards



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/extend-qx-ui-mobile-page-NavigationPage-BusyIndicator-not-run-tp7585333p7585345.html
Sent from the qooxdoo mailing list archive at Nabble.com<http://Nabble.com>.

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to