Interner Explorer Progress Indicator Problem

Hi all,
I'm developing a web project using Struts and xsl. The problem is In some pages once you press the submit button, the progress indicator which shows the progress in loading the page, shows the page is loaded without loading the new page. This problem occurs where there is a long background process to complete like database update which may take few seconds. In Firefox this works properly.
Then the user can again submit the same page.
Can any one help me on this

Cp5x had some bugs in this area.  Test with other fonts such as Arial or Myriad Pro.

Similar Messages

  • Progress Indicator Problem?

    Hello I have a new iMac and I can say nothing but good things about it. I have, however, come across something that doesn't really affect the system in anyway but rather looks a bit off. In Disk utility and the Archive utility I have what appears to be a scrollbar area and (sometimes) a window resize handle along the right side. It doesn't seem to be normal, though I may be wrong. I would just like to know if this is something that everyone has or if something has been changed on my system to allow for this to appear. Below I give you an example of what I mean.
    http://i27.photobucket.com/albums/c167/KBcool/Screen.jpg

    Cp5x had some bugs in this area.  Test with other fonts such as Arial or Myriad Pro.

  • Progress Indicator - Markers Problems...

    the progress indicator in the playback controls isn't working how it should. the yellow ring that's supposed to follow the hand around fills up half way when the hand gets to "9 o clock" and fills up completely at "3 o clock". So it's either. Empty, Half-full, or completely filled over the course of each marker. Not a huge deal but quite annoying on the longer markers. any idea what the problem might be? thanks!

    Hi
    Seems to work OK here with OSX.8.2 and both MS2.2.1 and 2.2.2.
    Does the issue happen in Edit, Perform or ?
    CCT

  • Progress indicator icon does not appear in Sap Portal

    Hi experts.
    Currently, i Have developed a WD ABAP which contains a progress indicator icon. When I execute this WD from backend (R/3 via SE80) the Icon progress appears while the WD is recovering data, building structure, etc...
    The problem appears when I access to the scenary from SAP Portal, because from SAP Portal does not appear the Progress Icon. Someone can tell me why the icon is not appearing, and how Can i solve it???
    Thank in advance.
    Best regards

    Hi Thomas.
    First of all, thanks for your answer.
    My problem is that I can obtain a progress indicator icon (a circle moving) when I am inside of my Ivew, but I need to show this icon also in the first step, during the initialization. The initialization of my scenary is a hard process which spent a lot of time, and I wonder if is possible show a Process indicator Icon while all data are being recovery. This icon is showed when I run my webdynpro in the Backend, but this icon does not appears qhen the new Internet Explorer Windows is opened.
    Do you know how to show it???
    Thanks again.

  • TIME-OUT error in BSAK select query(Progress Indicator is also used)

    Hi,
        In my report program one select query is there on BSAK table, which is as follows --
           SELECT BUKRS                                                     
                         BELNR
                        GJAHR
                        SHKZG
                        BSCHL
                        UMSKZ
                        LIFNR
                        EBELN
                        EBELP
                        WRBTR
                        DMBTR
                        XZAHL
                        REBZG
                       AUGBL
                       BLART
                       AUFNR
                       AUGDT
                       BUZEI FROM BSAK
                                  INTO TABLE IT_BSAK
                                  FOR ALL ENTRIES IN IT_BKPF1
                                   WHERE BUKRS = IT_BKPF1-BUKRS
                                                AND AUGDT = IT_BKPF1-BUDAT
                                                AND AUGBL = IT_BKPF1-BELNR
                                                AND BSCHL IN ('31' , '29', '26', '39', '25').
    I used Progress Indicator befor running this query and after this query also. But still It's giving me TIME-OUT error in this select query only.
      I run the same query for 10 records in IT_BKPF1 table, it runs perfectly. But when I run it for 1000 records it giving dump.
    And in actual bussiness my records are always more than 100 only.
    I also check the indexing. It having secondary indexing on this BUKRS, AUGDT, AUGBL fields. Then also it's giving error.
    so, How can I solve this dump..?? What could be the reason..??
    Thanks in advance...!!
    Regards,
    Poonam.

    Hi Poonam Patil,
    Try to provide BELNR and GJAHR in where condition...
    BKPF-DBBLG ==> BSAK-BELNR
    Also check
    BKPF-BLDAT ==> BSAK-AUGDT
    Check out above relation...
    If data is there in these fields of the table and both are matching then you can pass it and as they are in primary key of BSAK it will improve the performance...
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Issue regarding Progress Indicator on table row selection

    Hi Team,
    I have overridden onSelectionListener on a table. On click of any record in the table I am performing some operation which takes few seconds to execute. So, I have to show a processing bar on click of any records in the table till the execution completes. I have added a .gif image as the progress Indicator and referring this in the client attribute of the output text in the columns in the table.
    --Code added for the output text in table column
    <af:column sortProperty="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.name}"
    sortable="false" headerText="#{emqacerts_uiBundle.TAG_NUMBER}" id="c9"
    filterable="true" align="center"
    inlineStyle="#{row.sn_status eq 'PRINT'?'background-color:#c4ff94;' : row.sn_status eq 'DRAFT'? 'background-color:#ffefa3;':'background-color:#ffffff;'}">
    <af:inputText value="#{row.bindings.TagNumber.inputValue}"
    label="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.label}"
    required="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.mandatory}"
    columns="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.displayWidth}"
    maximumLength="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.precision}"
    shortDesc="#{bindings.XxqaSSCOrderInfoRO11.hints.TagNumber.tooltip}"
    id="it6" clientComponent="true">
    <f:validator binding="#{row.bindings.TagNumber.validator}"/>
    <af:clientAttribute name="loadingIndicatorId"
    value="#{backing_Pages_MainPage.loadingIndicatorId}"/>
    <af:clientListener method="showWhenBusy" type="click"/>
    </af:inputText>
    </af:column>--Code in the backing bean
    public void setLoadingBox(RichPanelBox loadingBox) {
    this.loadingBox = loadingBox;
    public RichPanelBox getLoadingBox() {
    return loadingBox;
    public String getLoadingIndicatorId() {
    return getLoadingBox().getClientId(FacesContext.getCurrentInstance());
    }--Code in the jsff page for the image
    <af:panelBox text="#{emqacerts_uiBundle.PROCESSINGPLEASEWAIT}" id="pb10" clientComponent="true"
    binding="#{backing_Pages_MainPage.loadingBox}" inlineStyle="display:none;"
    titleHalign="center" background="dark" showDisclosure="false" ramp="highlight">
    <af:panelGroupLayout id="pgl5" layout="horizontal" halign="center">
    <af:spacer width="60" height="10" id="s1"/>
    <af:image source="/images/progress.gif" id="i1"/>
    </af:panelGroupLayout>
    </af:panelBox>--JavaScript
    <af:resource type="javascript">
    //Global variable to hold the component ref.
    var loadingIndicatorComponent;
    function showWhenBusy(event) {
    //get the dialog or other component we want to show and hide
    var componentId = event.getSource().getProperty('loadingIndicatorId');
    loadingIndicatorComponent = AdfPage.PAGE.findComponent(componentId);
    if (loadingIndicatorComponent != null) {
    AdfPage.PAGE.addBusyStateListener(loadingIndicatorComponent, handleBusyStateCallback);
    event.preventUserInput();
    else {
    AdfLogger.LOGGER.logMessage(AdfLogger.SEVERE, "Requested indicator compoenent not found");
    function handleBusyStateCallback(event) {
    if (loadingIndicatorComponent != null) {
    // Check is this is a dialog as
    // this needs different treatment
    var isDialog = (loadingIndicatorComponent.getComponentType() == "oracle.adf.RichPopup");
    if (event.isBusy()) {
    if (isDialog) {
    loadingIndicatorComponent.show();
    else {
    loadingIndicatorComponentId = AdfAgent.AGENT.getElementById(loadingIndicatorComponent.getClientId());
    loadingIndicatorComponentId.style.display = "inherit";
    else {
    if (isDialog) {
    loadingIndicatorComponent.hide();
    else {
    loadingIndicatorComponentId = AdfAgent.AGENT.getElementById(loadingIndicatorComponent.getClientId());
    loadingIndicatorComponentId.style.display = "none";
    AdfPage.PAGE.removeBusyStateListener(loadingIndicatorComponent, handleBusyState);
    </af:resource>My problem is, if I click on any record in the table for first time, progress bar is not displayed. But from second click of any record, it starts displaying.
    If anyone has any idea on this then please let me know what the issue is.
    Thanks in advance,
    Kavitha

    Hi John,
    Thanks for your quick reply. I tried using af|statusIndicator component. But this doesnt disable the components on the page while the server is busy.
    Is there any way to disable the page/make the page read only when the processing is happening ?
    Thanks in advance,
    Kavitha

  • Progress Indicator not displaying

    Hello,
    We have an existing web application built using older version of Crystal Viewer control that doesn't display any progress indicator when the report starts running. However I see with CR 2008, it's possible to display a progress indicator.
    I have migrated the application to work against CR 2008, however I am unable to display the progress indicator. I added the following configuration entries but with no difference.
    <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="resourceURI" value="/crystalreportviewers12" />
            <add key="processingIndicatorDelay" value="5"/>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Has anybody experienced this problem?
    Please assist.

    I don't know if you are using the below, but if not, add it;
    <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler"; />
          </sectionGroup>
        </sectionGroup>
      </configSections>
    Also, use this code:
      <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
            <add key="processingIndicatorDelay" value="20"/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Finally, make sure you have applied SP 1;
    https://smpdl.sap-ag.de/~sapidp/012002523100006555792009E/cr2008win_sp1.exe
    Or SP2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Colors in Progress Indicator

    How to  change colors in Progress Indicator in ALV?

    hi
    good
    go through this hope this would help you to solve your problem
    Please check this sample code.
    data: index type i.
    do 4 times.
    index = sy-index * 25.
      call function 'SAPGUI_PROGRESS_INDICATOR'
           exporting
                percentage = index
                text       = 'Processing Data'.
      wait up to 1 seconds.
    enddo.
    Also check this thread for another sample codes.
    Function module to display % complete message
    reward point if helpful.
    thanks
    mrutyun^

  • Display Progress Indicator in the Run Time

    Hi All,
    How do display Progress Indicator in the Run Time for a JSF Page using ADF components?
    Regards
    Santosh

    I have similar problem.
    Basically my page do search in the database which takes some time. so when search starts I would like to display the progress indicator or some thing which will show some processging is going on in background. Once it completes the background processing, the same page displays the result. At this time I want to hide the progress indicator.
    Is there any way to do this. I am using EA17 with JDev.

  • Process Flows deployment: progress indicator is at 50%

    Process Flows deployment : progress indicator is at 50%.
    CPU on both client and server is 0%.
    The OWB client application needs to be killed.
    We have increase the value of the -Xmx and -Dlimit parameter on owbclient.bat
    from -Xmx384M -Dlimit=384M -
    to -Xmx784M -Dlimit=784M -
    the problem persists.
    can you help me?
    thanks

    Hi, I had this problem sometimes ago. And solved it increasing the -Xmx value at the file owb.cl at OWB_HOME\owb\bin\win32 from -Xmx128M to -Xmx768M.
    I think it will work for you too.
    Regards
    Nogs

  • Display a progress indicator in the jsp

    Hi to all;
    Once more i need your help.
    I have built a website that can connect insert and retrieve data into and from any database.
    My problem is that, since some of the insert operations take long to complete, I would like a pop up progress indicator to display in order to keep the user inform.
    I have tried AJAX stuff, but i am not satisfied.
    Is there another way to work this out?
    I use sun studio creator and java.
    Thanks

    Encephalopathic wrote:
    DrLaszloJamf wrote:
    What all the koolio kidz be using these days is JavaFX, although I calls it Jizzle.
    I'm not sure about the "koolio kidz", but Sun is sure putting its marketing and development might behind this and apparently to the detriment of Swing. :( Maybe we all will be FX'ing in the near future.I really am waiting for them to get a rapper to start shilling for JavaFX, the way Snoop Dogg played golf on a commercial with Lee Iacocca to sell the Chrysler 300.

  • Using a popup as a progress indicator.

    Hi All,
    I'm using Jdeveloper REL 1 (11.1.1.1.0)
    I'm relatively new to ADF development.
    Here's my use case:
    1. Display a set of records that will be processed.
    2. User selects OK button to process records
    3. A popup is launched displaying a progress indicator, in my case I went with an animated gif.
    4. After the popup is launched, execute some code to process the records.
    5. After processing code completes, close the popup and refresh the page that launched the popup.
    The problem I'm having is, my method is executed before the popup displays and I need it to run after the popup is displayed. Currently, I have the popup content is in a dynamic region that swaps out an empty task flow for the taskflow that contains the progress indicator jsff fragment. The method to be executed is configured as an executable in the page fragments pagedef file. It's obvious to me now that all the executables are executed during the prepare model phase and before the page is rendered. How do I work around this, or is there a different way to approach this problem?
    I've also tried launching the popup programatically from a managed bean and then run the processing code, however, once the popup is launched, nothing else happens until the popup is closed.
    Thank you,
    Edited by: rvlong on Apr 6, 2010 1:06 PM

    See if these help:
    http://andrejusb.blogspot.com/2008/08/glasspane-in-adf-faces-rc.html
    http://www.oracle.com/technology/products/jdev/tips/fnimphius/glasspane/glasspane.html

  • Internal error 'Period Indicator' (-2024) OPID

    Dear All,
    Please help me in solving this problem. I am getting this internal Internal error 'Period Indicator' (-2024) OPID occurred on Client system while copying Sales Delivery to Outgoing Excise Invoice. When I am doing the same thing on Server System I am not getting any error it works fine I am able to copy Sales Delivery to Outgoing Excise Invoice. I am using B One 8.8 PL 10
    Regards,
    Noor Hussain

    Hi Noor Hussain,
    Please check your another posting and close this one.
    Thanks,
    Gordon

  • "PROGRESS INDICATOR" IN FORM OUTPUT !!

    HI
    I HAVE DEVELOPED A FORM BY TEMPLET.FMB.
    WHEN I RUN THIS FORM FROM FROUNT ENDI GET MINE FORM BUT WHENEVER I CLOSE THIS FORM I GET "PROGRESS INDICATOR" WINDOW .
    CAN U TELL ME WHY IT'S COME ?
    WHAT IS THE PROBLEM IN MINE TEMPLET FORM !?
    , HOW CAN I REMOVE THIS ?
    THANX

    This is an XML forum, not a Forms forum. You question is probably better suited for Forms
    You may need to get a new keyboard as your CAPS LOCK appears to be stuck on.

  • Progress indicator glitches

    Hi Guys :-)
    I really hope someone can help me, because this has been bugging me for a while.
    I programmed my sound setup on a mac pro running osx 10.6.8 and here I don't have any problems with the progress indicator.
    I've now started the session on my brand new macbook pro running 10.8 and here there's some glitches with the progress indicator.
    The pin is still turning around in the circle but the yellow colour only shows empty, half full or full.
    I'm running the latest version of Mainstage (2.21) on both machines
    Does anyone have a solution ?
    Any help would be greatly appreciated.
    Cheers
    Andy

    Hi
    Seems to work OK here with OSX.8.2 and both MS2.2.1 and 2.2.2.
    Does the issue happen in Edit, Perform or ?
    CCT

Maybe you are looking for

  • Installation problem with solaris 10

    Hi While installing solaris 10 x86 I skipped the installation of solaris 2 of 3 CD . After than I installed solaris 3 of 3 CD. When the installation is completed I cannot find some important commands like vold & volume management commands. Now how ca

  • No connection possible to BI master system SAP_BW

    Hello We are using the BEX query designer (BI 7 version).  When we open a query in design mode and we then click on the Execute button, we encounter an error as follows:# - internet explorer opens up - we are prompted to enter a user id / password -

  • How do I schedule events for 2006?

    I want to set up my lab for next year. When I try to schedule tasks for January, it reverts to 2005 and tells me I cannot schedule tasks in the past. How do I advance it to 2006? eMac   Mac OS X (10.4.3)   Thirty-three computers in an elementary scho

  • Drag and drop very long password from host MacBook to guest iPod Touch?

    Hi, iPod Touch 64GB Software version 3.1.2. MacBook as in signature. When I built my home wireless network, I chose a very long and complex password (63 characters) to protect the access to my network. Once the passphrase was randomly chosen, it was

  • POPUP key lov stopped working in "Imported" application.

    Hi , I have a perfectly running APEX application. For some testing purpose I exported the application and again "Imported" the application in same server. But in the new application, POPup KEY LOV stopped working, i.e. if I press popup lov icon nothi