[flexcoders] HOw to disable progress bar

2005-09-17 Thread sandip_patil01
Hi , can anybody tell how to remove progress bar after fetching records from database. Here is my code function callingDocTypes() { showLoadingWindow(Getting Records...); itemList=basicAdvanceSearch.getDocumentTypes.result; } this itemlist

Re: [flexcoders] HOw to disable progress bar

2005-09-17 Thread Clint Modien
Well... looking at your code you could have your function call showLoadingWindow return a reference to the loaded window like this... function callingDocTypes() {var recordsWindow =showLoadingWindow(Getting Records...);itemList=basicAdvanceSearch.getDocumentTypes.result; // write code here to