We have a number of web pages that spend some time doing some background processing, and would like to have a transparent "loading..." gif or progress bar shown on the web page to give the web user some feedback that something is happening. I note that a number of the Infragistics examples do this, but I cannot see how and I cannot find any documentation on it's implementation. Any help would be most appreciated.
The infragistics controls have a 'progress indicator' built into them. The WebTab, and WebAsyncRefreshPanel can be used as AJAX Containers which will give you async capabilities and also give you an automatic progress indicator. The grid has it's own progress indicator as well, for when it is performing an Async task. And as a final option, the Microsoft AJAX UdatePanel also provides progress bar functionality. If you're coding your own ajax, you may be better of simply showing a hidden div when the request is opened, and hidding the div again when the response has been received.
-Tony
I'm using a WebDialogWindow to give my user a UI to configure their application.
One of the steps in this configuration process takes more than a minute to comlete.
I'm trying to use UpdatePanel and an UpdateProgress conrol to automatically display a "Please Wait" mesage during his long task...
I cannot get the UpdateProgress control to display anything in the dialog during the long task (for now I've simply used a sleep(30000) to simulate the long task on the server. (it is initiated via a button click)
Is there a way to do this within a WebDialogWindow?
I put an asp:UpdatePanel inside the ContentPanel <Template>, and associated the UpdateProgress with this internal UpdatePanel
any reason this wouldn't work?
Thanks!
Hi Tony,
how can I show the "progress indicator" for every click on the new selected tab. I think this will be showed for every postback. On my webtab control is a custom progress indicator initialized.
function UltraWebTabObjekte_InitializeTabs(oWebTab){
TabProgess = $E("TabProgess")
oWebTab.loadAllUrls = true;
oWebTab.getProgressIndicator().setTemplate(TabProgess.innerHTML);
}
For the tab change I call these method:
function _setTab(){
var _tab = _uwtab.oWebTab.Tabs[M2Office.Enums.EnumTabName.ToString(_oas.EnumSelectedWebTabKey)];
if(_tab != null){
if(_uwtab.oWebTab.selected === _tab.index){
_uwtab.oWebTab.selected = -1;
_uwtab.oWebTab.setSelectedTab(_tab);
...
After this call will be fired the AfterAsynchResponse event. I think, here must be show my progress indicator, but this do not work. It's works fine, when I before fire the __postback method.
Thanks