[CLOSED] Process bar issue in IE

  1. #1

    [CLOSED] Process bar issue in IE

    Hi,

    I have grid panel, on right clicking on any of the data htere is a context menu. On selecting any of the values from the context menu a pop up will be opened. Below is the window am using in pop up:

     <ext:Window ID="viewWinTierDetails" runat="server" Icon="ApplicationViewGallery" 
                        Plain="true" Padding="5" ButtonAlign="Center" Modal="true" CloseAction="Hide" Closable="true"
                        Height="550" MinWidth="1260" MaxWidth="1310" Draggable="false" Layout="FitLayout" Hidden="true" Maximized="true">
                        <Items>
                            <ext:Panel ID="pnlWinTierDetails" runat="server">
                                <Loader ID="Loader1" runat="server" AutoLoad="false" Mode="Frame"></Loader>
                            </ext:Panel>
                        </Items>
                    </ext:Window>
    Data will be loaded in the server side like this :

      
                string strTierDetailsUrl = "dummy.aspx";
                this.pnlWinTierDetails.ClearContent();
                this.pnlWinTierDetails.AutoScroll = false;
                this.pnlWinTierDetails.Loader.Url = strTierDetailsUrl;
               this.pnlWinTierDetails.Loader.Mode = LoadMode.Frame;
                this.pnlWinTierDetails.Loader.LoadMask.ShowMask = true;
                this.pnlWinTierDetails.Loader.LoadMask.Msg = "Loading.....";
                this.pnlWinTierDetails.Loader.DisableCaching = true;
                this.pnlWinTierDetails.LoadContent();
                this.viewWinTierDetails.Title = "Tier Details : " + title;
                this.viewWinTierDetails.Show();
                this.viewWinTierDetails.Maximize();
    Pop up works fine, but the issue is first time the pop up opens and the user closes it, immediately if the user opens the pop again then the pop up opens as expected but there will be a process bar at the bottom which will still be showing as processing. Please check the image below:

    Click image for larger version. 

Name:	pb.PNG 
Views:	74 
Size:	7.1 KB 
ID:	24065

    Please let me know how can I get rid of the process bar when the pop up is loaded second time.
    Last edited by Daniil; Jul 17, 2015 at 3:38 PM. Reason: [CLOSED]
  2. #2
    Hi @arjunrvasisht,

    Hmm, maybe a processing bar shows the state of the previous iframe that didn't finish its loading. Well, it is only a guess and I don't quite have any idea how to overcome that.

    Providing us with a full test case to reproduce the problem would really helpful for us to help you.

Similar Threads

  1. Replies: 4
    Last Post: Jan 24, 2012, 10:37 AM
  2. [CLOSED] Browser Progress Bar is still in process...
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jul 26, 2011, 10:21 AM
  3. Replies: 1
    Last Post: Jul 15, 2011, 6:21 AM
  4. [1.0] Process POST result Json data
    By Maarten Boone in forum 1.x Help
    Replies: 0
    Last Post: Oct 31, 2010, 6:53 AM
  5. Mask to handle large server side process
    By NewGuy_001 in forum 1.x Help
    Replies: 2
    Last Post: Jun 12, 2010, 8:55 PM

Tags for this Thread

Posting Permissions