Modal busy indicator and other popups is looks different in IE10 and other
browsers.
Since playground for some reason do not allow to create popups here is code
fragment I'm using to create those one onattached image.

__createWaitPopup: function(text) {
if (MobilePortal.UI.ToolBarPage._waitPopup) {
 if (text == null) {
MobilePortal.UI.ToolBarPage._waitPopup.setTitle(MobilePortal.UI.Locale.getStr("loading"));
 } else {
MobilePortal.UI.ToolBarPage._waitPopup.setTitle(text);
 }
return MobilePortal.UI.ToolBarPage._waitPopup;
 } else {
var busyIndicator = new
qx.ui.mobile.dialog.BusyIndicator(MobilePortal.UI.Locale.getStr("pleaseWait"));
 MobilePortal.UI.ToolBarPage._waitPopup = new
qx.ui.mobile.dialog.Popup(busyIndicator);
if (text == null) {

MobilePortal.UI.ToolBarPage._waitPopup.setTitle(MobilePortal.UI.Locale.getStr("loading"));
} else {
 MobilePortal.UI.ToolBarPage._waitPopup.setTitle(text);
}
 MobilePortal.UI.ToolBarPage._waitPopup.setModal(true);
return MobilePortal.UI.ToolBarPage._waitPopup;
 }
}

Then showing it just like this:

showWait: function(text) {
var wait = MobilePortal.UI.ToolBarPage.__createWaitPopup(text);
 if (wait.isShown() == false) {
wait.show();
 }
}

Git qooxdoo sdk used here.

-- 
когда я опустился на самое дно, снизу мне постучали..

<<attachment: ie10modalbusyindicator.png>>

------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security capabilities. Easily and
efficiently configure, manage, and operate all of your security controls
from a single console and one unified framework. Download a free trial.
http://p.sf.net/sfu/alienvault_d2d
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to