How to do please wait

I have a site that access our mainframe tables to compare data that the user enters on our page. When the user hits submit, sometimes there may be a delay to access these mainframe tables of 10 sec. or possibly more depending on traffic. When the user hits submit, how could I show a please wait message/animated image until the response comes back from our mainframe?
Thanks!!!

I get a javascript error "Object expected" using your code. Here is my page code:
<f:view>
      <f:loadBundle basename="com.riteaid.raweb.web.resources.messages" var="msg"/>       
          <hx:scriptCollector id="scriptCollector1">
          <div id="formDiv">
          <h2><h:outputText value="#{msg.Verification_Title}" id="txtoutTitle"/></h2>        
          <h4><h:outputText value="#{msg.Verification_Title2}" id="txtoutTitle2" styleClass="/theme/main.css"/></h4>
          <p><h:outputText value="#{msg.Verification_ContentParagraph1}" id="txtoutParagraph1"/></p>
          <table width="450" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
               <td valign="top">
                <div align="center">
                <hx:graphicImageEx styleClass="graphicImageEx" id="imgRXPhoto" value="#{msg.Verification_RXPhoto}" width="400" height="159"></hx:graphicImageEx>
                </div>
                    <h:panelGrid id="pageMessages" width="450" rendered="#{Verification.rendered}" cellpadding="0" cellspacing="8" styleClass="errorTable">
                         <h:outputText value="#{msg.ImportantMessage}" id="txtoutImportantMessage" styleClass="error"></h:outputText>
                         <h:panelGrid id="errorTable" width="100%" cellpadding="0" cellspacing="0" columnClasses="errorList">
                              <h:messages id="errmsgReg" layout="table"></h:messages>
                         </h:panelGrid>
                    </h:panelGrid>
                 </td>                        
               </tr>
           </table>
             <h:form styleClass="form" id="form1">
         <table border="0" cellspacing="0" cellpadding="0" width="450">
         <tr>
              <td height="30"><h:outputText styleClass="standout" id="txtoutRegAllFieldsAsterick" value="#{msg.All_Fields_Asterick}"> </h:outputText><h:outputText styleClass="fadeout" id="txtoutRegAllFieldsRequired" value="#{msg.Cust_Profile_Update_Asterisk_Required}" style="font-size:11px;"></h:outputText></td>
           </tr>
          <tr>
          <td><img src="images/content_shell_top.gif" alt=" " width="450" height="10" /></td>
           </tr>
           <tr>
          <td class="contentShell">
               <table border="0" align="center">
                 <tr>
                   <td align="right"><span class="standout">*</span><span class="label"><h:outputText value="#{msg.Verification_FirstName}" id="txtoutFirstName" /></span></td>             
                   <td><h:inputText styleClass="inputText" id="txtFirstName" maxlength="30"></h:inputText>
                   </td>
                 </tr>
                 <tr>
                   <td align="right"><span class="label"><h:outputText value="#{msg.Verification_MidName}"
                                                  id="txtoutMid" /></span></td>
                   <td><h:inputText styleClass="inputText" id="txtMid" maxlength="1" size="4"></h:inputText></td>
                 </tr>
                 <tr>
                   <td align="right"><span class="standout">*</span><span class="label"><h:outputText value="#{msg.Verification_LastName}" id="txtoutLastName"/></span></td>
                   <td><h:inputText styleClass="inputText" id="txtLastName" maxlength="30"></h:inputText></td>
                 </tr>
                 <tr>
                   <td align="right"><span class="standout">*</span><span class="label"><h:outputText value="#{msg.Verification_StoreNumber}" id="txtoutStoreNumber"/></span></td>
                   <td><h:inputText styleClass="inputText" id="txtStoreNumber" maxlength="5" validator="#{PageDataValidator.IntegerRequired_StoreNumber}"></h:inputText></td>
                 </tr>                
                 <tr>
                   <td align="right"><span class="standout">*</span><span class="label"><h:outputText value="#{msg.Verification_ScriptName}" id="txtoutScriptNumber"/></span></td>
                   <td><h:inputText styleClass="inputText" id="txtScriptNumber" maxlength="7" validator="#{PageDataValidator.IntegerRequired_ScriptNumber}"></h:inputText></td>
                 </tr>
                 <tr>
                   <td align="right"><span class="standout">*</span><span class="label"><h:outputText value="#{msg.Verification_DateFilled}" id="txtoutDateFilled"/></span></td>
                   <td><h:inputText styleClass="inputText" id="txtMonth" size="2" maxlength="2" validator="#{PageDataValidator.IntegerRequired_Month}"><hx:inputHelperAssist autoTab="true" /></h:inputText> / <h:inputText
                                                  styleClass="inputText" id="txtDay" size="2" maxlength="2" validator="#{PageDataValidator.IntegerRequired_Day}"><hx:inputHelperAssist autoTab="true" /></h:inputText> / <h:inputText
                                                  styleClass="inputText" id="txtYear" size="4" maxlength="4" validator="#{PageDataValidator.IntegerRequired_Year}"></h:inputText></td>
                 </tr>
                 <tr>
                 <td align="right"></td>
                 <td><span class="fadeout"><h:outputText value="#{msg.Verification_DateFilled_Example}" id="txtoutDateFilled_example"/></span></td>
               </tr>
               </table>
               </td>
           </tr>
           <tr>
          <td><img src="images/content_shell_bot.gif" alt=" " width="450" height="10" /></td>
           </tr>
           <tr>
          <td height="50" align="right">
          <hx:commandExButton type="submit" styleClass="button" id="btnContinue" action="#{Verification.submit}" onclick="submitForm(this.form)" image="#{msg.Verification_ContinueButton}"></hx:commandExButton>       
          </td>
           </tr>
           <tr>
          <td height="50">
          </td>
           </tr>     
           <tr>
          <td height="50">
          </td>
           </tr>     
         </table>
         </h:form>
         </div>
         <div id="pleaseWaitDiv" style="display: none; margin-top: 200px;">
         <table width="450" border="0" align="center" cellpadding="0" cellspacing="0">
               <tr>
                  <td>
                        <center>
                        <h2>Please Wait...<br />
                           <img id="waitgif" src="images/activity_bar1.gif" alt="Please Wait..." width="120" height="19" /></h2>
                           <p>The application is  working to fullfill your process.</p>
                           </center>
                    </td>
               </tr>
          </table>
            </div>
            <script>
           function gowait() {
             document.getElementById("formDiv").style.visibility="hidden";
             document.getElementById("pleaseWaitDiv").style.visibility="visible";
             window.setTimeout('showProgress()', 500);
            function showProgress(){
             var wg = document.getElementById("waitgif");
             wg.src=wg.src;
          </script>
          </hx:scriptCollector>
     </f:view>

Similar Messages

  • How to implement "Please wait your request is being processed" window ?

    Hi all,
    We are integrating BSP iviews in our portal. When the BSP applicaiton is being processed(eg. a form is submitted"), is it possible to show a small window like "Please wait your request is being processed" ? .
    Such a window appears when any operation is performed in the KM content.
    How to achieve such a functionality with the integrated BSP applications. How do I implement this functionality? What are the API's? Any sample code is available?
    Thanks and Regards,
    Gauri Gosavi.

    Hi,
    in KM iview there is a hidden DIV with this:
    <div id="htmlb_wait" style="z-index:99; display:none; visibility:hidden; left:0px; top:0px; width:0px; height:0px; position:absolute; overflow:hidden;">...</div>
    Now you can put it into your BSP page (as hidden). Now before every form submit (onClientClick for button, ...) just call a JS function, which will change the visibility of this div to visible. So the DIV appears and stays here until page refresh.
    Hope this helps a bit.
    Romano

  • How to create 'Please Wait' inside of CFWINDOW?

    Folks,
    I'm trying to figure out how to create a 'please wait'
    display while the contents of a cfwindow loads. Any suggestions?
    Samples highly appreciated.
    thanks,
    /r

    Hello,
    According to your question this would be a progress style form. The first link shows an example for copying files (and there are some builtin methods and this is not meant to replace them) while the second link shows how to work with loading a database on
    form load.
    I did both with specific things in mind but you can go in other directions too.
    https://code.msdn.microsoft.com/Copy-files-while-keeping-da349a4f
    https://code.msdn.microsoft.com/Practical-Asynchronous-ebd00ae1
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • When my phone rings it goes straight to please wait while your party is reached. how do i get rid of that message?

    when my phone rings it goes straight to please wait while your party is reached. how do i get rid of that message?

    do you mean like when someone calls you, that's what they hear? if that's the case, it may be a ringback tone or feature. i've heard the message that you are describing a few times when i have called people (as opposed to hearing the ringing sound), but i honestly don't know much about it. all i can figure is that it's a "ringback" tone or feature.

  • My iMessages don't work since updating. It says the Messages database is being upgraded, please wait while it finishes or Quit Messages and relaunch it later. How do I get them working again?

    My iMessages don't work since updating. It says the Messages database is being upgraded, please wait while it finishes or Quit Messages and relaunch it later. How do I get them working again?

    Back up all data.
    Quit Messages if it’s running. Force quit if necessary. Relaunch it and test after each of the following steps. If the problem isn't resolved, quit again and go on to the next step.
    Step 1
    Make sure you know the ID and password you use with iMessage. Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select
              Change Settings for Keychain "login"
    In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
              Keychain Access ▹ Preferences ▹ First Aid
    If the box marked
              Keep login keychain unlocked
    is not checked, check it.
    Select
              Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain.
    From the Category list in the lower left corner of the window, select My Certificates. Look carefully at the list of certificates in the right side of the window. If any of them is marked with a red "X" as expired or invalid, delete it. Also delete all items with "iMessage" or "com.apple.idms" in the name, whether valid or not.
    From the menu bar, select
              Keychain Access ▹ Preferences... ▹ Certificates
    There are three menus in the window. Change the selection in the top two to Best attempt, and in the bottom one to  CRL.
    Log out and log back in.
    Step 2
    Hold down the option key and select
              Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash (some may not exist):
              Containers/com.apple.corerecents.recentsd
              Caches/com.apple.Messages
              Caches/com.apple.imfoundation.IMRemoteURLConnectionAgent
              Containers/com.apple.iChat
              Containers/com.apple.soagent
              IdentityServices
    Leave the Library folder open. Log out and log back in.
    Step 3
    Go back to the Finder and move the following item from the open Library folder to the Desktop:
              Messages
    Note: you are not moving the Messages application. You’re moving a folder named “Messages.”
    If Messages now works, delete the Messages folder on the Desktop. Otherwise, quit Messages again. Put back the folder you moved, overwriting the newer one that may have been created in its place.
    Step 4
    In the Preferences subfolder, there may be several files having names that begin with any of the following strings:
              com.apple.iChat
              com.apple.ids
              com.apple.imdsmsrecordstore
              com.apple.imessage
              com.apple.imservice
    Move them all to the Desktop. There may also be a file with the name "com.apple.imagent.plist". Move that to the Trash.
    Also in the Preferences folder, there's a subfolder named "ByHost". Open it and do the same thing.
    Log out and log back in. Test again. This time Messages should perform normally, but your settings will be lost. You may be able to put back some of the files you moved to the Desktop in this step. Relaunch and test after each one. Eventually you should find one or more that causes Messages to malfunction. Delete those files and recreate whatever settings they contained.
    If the issue is still not resolved, quit Messages again and put all the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash. Stop here and post your results.
    If you later decide that you don’t like the results of Steps 3 and 4, you can undo them completely by quitting Messages and restoring the items you deleted in those steps from your backup.

  • Question about Page Builder behavior - how to get a "please wait message" ?

    Hi all together,
    I got a question about Portal Framework / Page Buider handling iView Integration.
    We are working with a lot of App Integrator iViews and often the pages includes with app integrator are loading longer than the rest of the portal. So there is the idea to put in a "please wait while loading message" for the enduser.
    I analysed the html code, the page builder is generating and foud out 3 diffrent approaches how the page buider is rendering the IFRAME with the integrated application configured with an app integrator iView.
    My question is how can I influence this behavior to put a "please wait while loading message"?
    Different types of iView integration in the client I have seen:
    a) direct loading of the content in the IFRAME (<iframe id="" ... scr="/mysource">)
    b) Filling the iframe with 'about:blank' and loading the content later by filling a form with JS
         ( <iframe id="" .... scr="about:blank">and after the iframe  <form id="" action="mysource" ...>
    c) Filling the iframe with a html file from the portal layout and loading the content later by filling a form with JS (similar to b)
         ( <iframe id=""" ....scr="/irj/portalapps/com.sap.test.mylayout/html/blank.html>
    I checked that variant b) is getting generated when loading a page with different components on the side (not only the app integrator iview) and variant c) is generated when just one app integrator iView is positioned (no portal page).
    Goal: To get the "please wait picture" I want to know how to get variant c) in cases of different elements on one page
    So I would be able to put this picture on the HTML-Page in the Portal layout (blank.html)
    Hope, someone with a deep portal / page builder know-how can help me out!
    Another way: Does anybody knows another way how to put a "please wait message" while app integrator application is not loaded yet?
    Thanks in Advance and kind regards,
    Jens
    Edited by: Jens Kohne on Nov 24, 2010 9:08 AM

    Hi Jens,
    there are several reasons why you don't get the loading animation:
    Web Dynpro ABAP: https://service.sap.com/sap/support/notes/1432358 -> missing configuration
    Wrong height size for iView: https://service.sap.com/sap/support/notes/1358494 -> alter configuration of the iFrame height (loading animation gets displayed, but is hidden)
    FPN, BSP, BEx: https://service.sap.com/sap/support/notes/1290995 -> AI isn't showing the animation because of performance considerations. I guess that is your case. Depending on your portal version this is a simple service configuration or involves some customization.
    br,
    Tobias

  • How do i reverse a download? the little center is turning & it says "loading, please wait". it's been doing this for several hours & I don't know how to stop it.

    I was downloading add ons; i let it wait until i left the site to load, but it's been running & showing the center spinning & "loading, please wait; it's been doing this for several hours & i don't know to stop or disable it

    There is a rectangular white box between the top & bottom of the screen with no buttons on it. The wheel turns with 'loading, please wait'. There is a little arrow on the upper left with 2 green & gold 'men'. When I click on it this message shows up on the screen "Please accept the Terms of Service first (Add a social network). The only way I can get the wheel to quit turning is to go to 'tools' & click on options & it stops turnning. I already had a yahoo, facebook & twitter accounts, so I don't know what to do.
    I've checked in my Control Panel & there is nothing with Firefox in there. If I can't resolve this can someone tell me to how to unload all of this & start over.
    Thanks.

  • OT: How can I manage a "Please Wait" message with this scenario?

    I have a page which allows you to paste in a potentially
    large list of zip
    codes.
    When you submit this page, the list is de-duped, and then
    checked against a
    table of ~22,000 zips for matches.
    Where and how in this process could I bring up a "Please
    Wait" message while
    the transaction is being completed?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================

    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    Ew. Double ew.
    I'm going to let it ride as is, until someone complains.
    Thanks for the
    neurons, though. Do you need them back? Or I should say, "you
    DO need them
    back"!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    >
    > It's my belief that some of your html elements will be
    able to show while
    > others are still being built. I guess I could be wrong
    on this, but I
    > think practically I'm right (ie, you can see elements on
    my page building
    > before the page is completely done).
    >
    > HTH,
    >
    > Jon
    >
    > "crash" <[email protected]> wrote in message
    > news:[email protected]...
    >> summation:
    >> In your SQL, at the bottom of the statement, you
    should be able to put a
    >> javascript call that will re-structure the
    visibility of the elements
    >> according to the variabels returned by the SQL. One
    page, reloaded once.
    >>
    >> My switch statement got a little convoluted. You
    should be able to just
    >> set one variable, or set one number and go from
    there (ie, if $v=3, hide
    >> other two), but i've not had any coffee or caffinne
    yet.
    >>
    >>
    ===========================================================
    >> Is the code in the third message on this post from
    the originating page?
    >> I took that it was, that it had a form, that form
    reloaded the same page?
    >>
    >> If so, you should be able to put a switch in there:
    >>
    >> switch($stage){
    >> case "upload":
    >> #this should be once the form has been completed
    >> $status=1; //status equal one, two or threee is one
    method you could
    >> use.
    >> break;
    >> case "complete"://you could aalso set a variable for
    each section, i
    >> think the one above is better, but this one made
    more sense right now,
    >> lol.
    >> #show the results,
    >> $resultsState="show";
    >> $formState="hide";
    >> $waitState="hide";
    >> break;
    >> case default:
    >> #empty, or first state, show the form to upload the
    data
    >> $live="form";
    >> break;
    >> }
    >>
    >> then, below:
    >>
    >> <div id="form" class="<?php echo $formState
    ?>">
    >> <form>
    >> whatever
    >> </form>
    >> </div>
    >>
    >> <div id="wait" class="<?php echo $waitState
    ?>">
    >> <img src="img/wait.gif" />
    >> </div>
    >>
    >> <div id="results" class="<?php echo
    $resultsState ?>">
    >> <h1>Results</h1>
    >> <p>stuff here</p>
    >> </div>
    >>
    >>
    >>
    >>
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>>I can do that. I'm worried about passing the zips
    array (which has been
    >>>exploded from the input) to the process page. How
    would I best do that?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "crash" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> THis is how I see the process, I guess I
    might not be following you:
    >>>>
    >>>> 1. User goes to form page, to submit zips.
    >>>> 2. User completes form, hits upload
    >>>> 3. Page refreshes itself, publishes please
    wait message (ie, could you
    >>>> not put an if [form submit] is true, echo
    this image, then begin the
    >>>> sql calculations)
    >>>> 4. As the calculations are finished, toggle
    visibility of image off,
    >>>> toggle div with results on.
    >>>>
    >>>> If that doesn't work, sorry, I completely
    misunderstand and will leave
    >>>> you be.
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> But then there's no opportunity to slam
    the waiting message up
    >>>>> there....
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "crash" <[email protected]>
    wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> couldn't you just have it reload the
    same page (isn't it anyway?).
    >>>>>>
    >>>>>>
    >>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>> Thanks, Joe. This troubles my
    mind, either way!
    >>>>>>>
    >>>>>>> --
    >>>>>>> Murray --- ICQ 71997575
    >>>>>>> Adobe Community Expert
    >>>>>>> (If you *MUST* email me, don't
    LAUGH when you do so!)
    >>>>>>> ==================
    >>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>> Technotes
    >>>>>>> ==================
    >>>>>>>
    >>>>>>>
    >>>>>>> "Joe Makowiec"
    <[email protected]> wrote in message
    >>>>>>>
    news:[email protected]...
    >>>>>>>> On 23 Oct 2006 in
    macromedia.dreamweaver.appdev, Murray *ACE*
    >>>>>>>> wrote:
    >>>>>>>>
    >>>>>>>>> LOL - OK, see, I was
    hoping to avoid breaking it into separate
    >>>>>>>>> pages
    >>>>>>>>> like that, but that way
    looks like it'll work....
    >>>>>>>>
    >>>>>>>> You can just re-call the
    page which processes the form data, and
    >>>>>>>> check
    >>>>>>>> whether or not the
    processing has been done:
    >>>>>>>>
    >>>>>>>> <?php
    >>>>>>>> if ($dataWasProcessed) {
    >>>>>>>> echo '<h1>Thank you
    for using Murray's Data Processing</h1>';
    >>>>>>>> } else {
    >>>>>>>> // Code to process form goes
    here
    >>>>>>>> // Code to re-call page with
    $dataWasProcessed set goes here
    >>>>>>>> // How to set that var left
    as an exercise for the reader
    >>>>>>>> }
    >>>>>>>>
    >>>>>>>> Personally, I find that it
    troubles my mind less to do such things
    >>>>>>>> in
    >>>>>>>> separate files.
    >>>>>>>>
    >>>>>>>> --
    >>>>>>>> Joe Makowiec
    >>>>>>>>
    http://makowiec.net/
    >>>>>>>> Email:
    http://makowiec.net/email.php
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • How to send a 'loading, please wait...' message to user

    My web application needs to load about 1000 item names to screen. It takes about half a minute before the names are returned.
    While waiting, the screen is blank and user wouldn't know what's going on. Is there a way to send a first page ('Loading,please wait...')to the browser, and then desplay the result page after the procedure completed.
    I searched in this forum before posting but didn't get help. I'm pretty new in this area, please help me.
    Thanks.

    By clicking a button. It's like a principal logins to school site, the first page he/she sees is student name page, the page is a big dropdown down list with all the student names in this school.
    I tried some javescript but didn't work. I think the problem could be:
    1. it takes time to get data from table and generate a html doc.
    2. it takes time to display the page.
    Reason1 is main problem and any javascript won't work at this step.
    Any suggestions, please?

  • How to Implement a "Please wait......" animation

    Hi,
    Hoping someone can point me in the right direction in implementing a "Please wait......" ajax loading animation process that is then hidden on result set completion.
    I have a report where I would like to indicate to the user that the report is running, using a "Please wait...." animation which then hides when the report results are returned to the user.
    Any help/example links that demonstrate this, would be much appreciated. I think there is an Oracle ApEx built-in example but unable to locate.
    Thanks.

    Hi,
    Just wondering if the Ajax Loading process used here at :> Please wait message ... actually works with Oracle ApEx 3.0.1 as I seem to be getting a javascript error when the actual ajax loading animation appears but then javascript error resolves when the ajax loading hides.
    Is there some issues with $s and $x in Oracle ApEx 3.0.1 with regards to window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    If so, is there a fix for this?
    Thanks.
    Tony.

  • Everytime I open Adobe i get "please wait while windows configures adobe acrobat xi" how can I stop it?

    When I open adobe, I get "please wait while windows configures adobe acrobat xi"

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

  • Launching VB6 Editor after installing Visual Studio 2013 results in "Please wait while Windows configures Microsoft Visual Studio..."

    I have had various versions of Visual Studio installed beside Visual Basic 6.0 Enterprise for some time with no problems, most recently Visual Studio 2012 Premium.
    I recently installed Visual Studio 2013 Premium, and now every time I open VB6 I get a dialog that says "Please wait while Windows configures Microsoft Visual Studio Professional 2013" that shows a progress bar. After it finishes (30 seconds or
    so), it launches again and again and finally VB6 will open. This happens with each instance of VB6, regardless if I've already done it once and never run VS2013 in between.
    If I cancel the dialog, I get this error message in a dialog: "Error 1712. One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible." Several more "Please wait"...
    dialogs will appear and if I continue to cancel, eventually I'll get the VB6 editor. It appear to work fine despite the error messages.
    It seems to me that the VS2013 installer flagged some dll's or other files to be rolled back whenever starting VB6. It doesn't appear to be necessary, and I'd like to avoid playing the "Please wait" wack-a-cancel-button game before launching each
    instance of VB6 (or waiting several minutes for no reason). So how do I fix this?
    Note: I've seen something similar happen in Outlook on a different PC when upgrading from 2010 to 2013. The same sort of "Please wait"... dialog would appear each time I opened Outlook. Judging by the "similar" questions that popped up when
    entering this forum post, I'd say this is a general problem with upgrading older versions or installing newer versions of major Microsoft software side-by-side.
    /* Don Reynolds */

    I found the answer!
    I was having the exact same issue, and I was search for a solution and I happened across the following thread: http://social.msdn.microsoft.com/Forums/en-US/f4b0fd38-f4f9-41ea-bd8d-834203a175d2/building-visual-studio-2010-project-triggers-please-wait-while-windows-configures-visual-studio?forum=vssetup&prof=required
    Scroll a small bit down, and there is a post by Barry Wang explaining that you need to use event viewer to find out what is missing. Anyway, I opened event viewer, then open VS 6, then hit refresh in the event viewer (under Windows Logs -> Application)
    and saw a warning message from MsiInstaller. It gave me the following message:
    Detection of product '{9C593464-7F2F-37B3-89F8-7E894E3B09EA}', feature 'Visual_Studio_Professional_x86_enu', component '{E3FF99AA-78B9-4A06-8A74-869E9F65E1FE}' failed.  The resource 'C:\WINDOWS\Microsoft.NET\Framework\URTInstallPath_GAC\' does
    not exist.
    I opened an elevated command prompt, I navigated to the C:\WINDOWS\Microsoft.NET\Framework folder and verified that 'URTInstallPath_GAC' didn't exist, and then I did "md URTInstallPath_GAC".
    Closed and reopened VS 6, and it instantly opened - no "Please wait" message.
    Now this may or may not be the same problem you are having (problem is - I have had it happen on two separate computers now with VS 6 and VS 2013 installed), but it should point you in the right direction. In fact, you should be able to use the Event Viewer
    for anytime the "Please wait" message shows up for any application, and then once there find out what is really missing.

  • Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait

    Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait...
    I tried downloading updates like it said to but it still will not display the document.  How do I print the PDF file ASAP

    Can you give us a LOT more info?
    What email client? What version of Reader (I can only assume you even have Reader at this point)?
    Please wait? I'm sure it says more than that, right?
    Have you tried simply saving the PDF (it IS a PDF correct?) to your desktop and opening it from there?
    Did you get this form from the IRS or did it come from somewhere else? If the IRS again, what version of Reader?
    Help us help you.

  • No more than 1 sessions at a time are allowed. Please wait until open sessions expire.

    I have been unable to log into my Actiontec MI424WR router this week, The router returns the message "No more than 1 sessions at a time are allowed. Please wait until open sessions expire." every time I try to log in. This has been going on for days.  Even pulling the power to reboot it did no change.  I'm the only user in the household that would log into it, so I don't understand how this could occur.  How can I get in?
    GLN2

    I really don't want to do a hard reset as I have a handful of custon port forwarding rules that I had created. I'm not a wiz at that, so it would take me too much time to re-create!  I may have no choice. Next time I can get in I will try the backup of the config file. I hope it contains the port forwarding rules.
    The backup function should work fine, I have used it to save my Steam port  forward rules to my hard drive, after a pin hole reset I was able to restore successfully. I did configure mine to 1 session & ALWAYS   logout when I am done.  I have never had any problems logging into the router. But in your case you may need more than 1 session allowed.
    Are you using a native or 3rd party app to remember your router ID/password? IF you are do not do this, you are "defeating" the built in security of the router
    If a forum member gives an answer you like, please give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem. Thanks !!!
    http://forums.verizon.com/t5/Verizon-net-Email/Fix-for-Missing-Inbox-sent-folders-etc-with-Internet-Explorer-11/m-p/647399

  • X305-q706 Stuck on splash screen where is says "Qosmio" with please wait...

    Hi,
    recently bought a Qosmio x305-Q706. First time I booted it up it gets to the splash screen with Qosmio displayed with "please wait" at the bottom and hangs there forever. The only way I can get it to boot is to cold boot it and mash the F12 key while it's loading the splash screen, if i'm lucky I can get into the option where u can choose which device to boot, and if I manually choose the harddrive I can load windows.
    Anyone hear of this issue or how to fix it? I've tried changing settings in the BIOS nothing. To Re-iterate, it's stuck on the pslash screen with Qosmio displayed, and if I press any key on the keyboard once it says "Please wait..." it just brings me to the bios :( .
    Any help would be appreciated.

    Hello
    It is very stupid situation and I really cannot understand why notebook hangs on this start-up level.
    Somehow is your Qosmio confused and cannot make decision which device should be first bootable device.
    Is some external device connected to your Qosmio notebook?
    Maybe BIOS update can help but if you have brand new notebook this is not solution. This is newest notebook and I presume there is latest BIOS version. So, if I were you I would contact either your local dealer and ask for replacement or Toshiba service directly. This behaviour is definitely not strange and notebook somehow hangs on BIOS POST (Power-On-Self-Test).

Maybe you are looking for

  • SharePoint Designer Workflow to email multiple recipients listed in a custom list

    Hi all, I created a workflow in designer attached to a form library. I also have a custom list "Admins" containing names of persons that serves a different purpose but would also like to be used as recipients for the workflow email everytime a new it

  • Easy Set-Up for Canon 5D Mark II Media

    I was in the forum about a month ago, and thanks to you all I learned what I needed to know to transcode my Canon 5D Mark II media to FCE. But, now I am shooting with Canon's new firmware that allows to capture media at 24 fps. Now, I know that FCE i

  • How to install DTW and xFusion

    Hi, sorry for asking such a stupid question... but how can I get the DTW on our server? I have neither found it in the Add-On folder of SBO nor in any download area of SBO network. We are using SBO 2007 A, but DTW is unfortunately not installed by de

  • Formatting the printer output.

    Hi, i'm trying to format the output of the EPSON LQ-870 dot matrix printer to print the output in th paper size height 280 mm & width 210 mm.For the first page the header is coming correctly.Burt for the second page the header is coming little down f

  • Jasper Reports and ADF: JRDataSource question

    Hi all, I am stuck with a problem creating a dynamic report with jasper. I want to use data from a VO or binding, not via a select in my report. Here is were i am at right now: BindingContainer bc = this.getBindings(); DCIteratorBinding iterBinding =