creation of delay before you navigate to another page

All,

I am trying to create a popup with image on a page load such as if you load this page the "loading... image into small div is displayed as for 2-3 seconds then the page automatically navigates to another page and pass a parameter value.»

Here's what I did:

1 added a popup div in my header page and within iam referencig < img src = #WORKSPACE_IMAGES #loading.gif / > it works correct loading pages

2 created DA to present the button "NEXT"

the problem is that #2 off so quickly before the iamge is paid or given,

How to make changes for #1 works for 2-3 seconds then #2 then runs to go to the target page?

Apex 4.2.

Thank you.

I made this another way.

Tags: Database

Similar Questions

  • How to remove white screen when you navigate from one page to another in Webworks BB?

    Hi all

    I have developed a web application for Blackberry using Blackberry webworks SDK... I created the package using emulator Ripple... In that when you navigate from one page to another page... coming white screen... How to remove this white screen... and instead of the definition of the loading screen in web application... Please me... Thank you very much in advance...

    With respect,

    Marimuthu_P

    normally it is not a white screen to navigate. You can view data-bb-effect as "bland" for the transition to the screen:

    https://github.com/BlackBerry/bbUI.js/wiki/screens

    second thing, is to use the activity indicator for loading (pending content):

    https://github.com/BlackBerry/bbUI.js/wiki/activity-indicator

  • How do to navigate to another page when press the 'OK' button to confirm the dialogue?

    Hello
    In a detail of the page, I have a "Delete" button, and when you press this button, it will appear a confirmation dialog box, if the user click on 'Cancel', the dialog box is missing stay and still on the current page, if the user presses the "OK" button, it calls a method in the class ViewImple (do remove and other business process logic) and show a different page. The extract of the JSF page as follows:

    < text af:commandButton = 'Delete' action = 'delete' id = "cb3" >
    < af:showPopupBehavior popupId = "p1" triggerType = 'action' / >
    < / af:commandButton >
    < af:popup childCreation = autoCancel "delayed" = "disabled" id = "p1" contentDelivery = "immediate" >
    < af:dialog id = "d2" type = "okCancel" title = "Confirm deletion?" resize = 'off '.
    dialogListener = "#{scheduleBean.deleteScheduleDialog} ' contentWidth ="200""
    contentHeight = "50" >
    < af:outputText value = "Are you sure you want to delete this report?" id = "ot1" / >
    < af:clientListener type = "dialogue" method = "dialogAction" / >
    < / af:dialog >
    < / af:popup >
    < af:resource type = "javascript" >
    function dialogAction (evt) {}
    result of the var = evt.getOutcome ();
    if(Outcome == AdfDialogEvent.Outcome.Cancel) {}
    evt. Cancel();
    }
    }
    < / af:resource >

    Now the question is when I click on "OK" button confirm dialogue, dialogue is missing, but he can't get into the business logic in ViewImpl class method (the "delete" action value you access method adfc-config.xml file, and then navigate to another page), also click on the button 'Cancel' to stay on the current page.

    All tips will be of great help!

    You can use it as

    Navigate ("deletePage"); the adfc-config. XML

    public static navigate (String taskFlowName) Sub {}

    > FaceContext.getCurrentInstance () .getApplication () .getNavigationHandler () .handleNavigation (FaceContext.getCurrentInstance (), null, taskFlowName);

    }

    or for isnde action to propagate a method you have to use
    > MethodExpression exp =
    > (MethodExpression) ADFUtils.getMethodExpression ("deletePage");
    > getRegAgentNextBtn () .setActionExpression (exp);
    I hope that you ADFUtils with you

  • Add a FacesMessage and then navigate to another page

    Hello

    I have a grain of support which adds a message of faces and then returns a result as:
      FacesContext.getCurrentInstance().addMessage(null, infoMessage);     
      return "back";
    I found the message is displayed, even if the target of jspx fact include the tag of af: messages. It seems that the new page operates in a completely different context and the messages are lost. If I return null from the bean of the support in place so that no navigation will occur, the message is displayed correctly.

    Is there a way to add a message and navigate to another page? (i.e. If the message on the target page).

    I use ADF Faces 11.1.1.2.0.

    See you soon!

    Hello

    I've never tried in 11g, but it should work, especially with JSF 1.2. Is the case of the navigation using redirection?

    Kind regards

    ~ Simon

  • How to disable the Message box 'the current compatibility setting is not supported. Turn off compatibility view before you run this web page.

    Hi all

    Since a few days, we are on 11.1.2.3.500 and using IE 11. In IE 11, we can use Oracle EPM Suite only in Enterprise Mode, otherwise only "Bindows" appears. Now, my question is how can I disable (or remove) the Popup Message "the current compatibility setting is not supported. Turn off compatibility view before you run this web page. "because it's really embarrassing that this message whenever I start a planning application, Manager of calc or what ever.

    Thanks a lot for your help.

    Kind regards

    André

    You can go to tools > compatibility view settings and you should be able to remove the Web site / uncheck compatibility view so that you won't get this message

    HTH

    Amarnath

    ORACLE | Essbase

  • How to navigate to another page?

    Hello

    I want to navigate through my page to another when I click the button, here is my code:

    SerializableAttribute public class Page1 extends Sprite
    {
    public var page2age2.
    public void Page1() {}
      
    var btn:Button = new Button();
    var lab: Label = new Sun;
       
    Lab.Text = "Click";
    btn.addChild (lab);
    btn.setPosition (10.50);
    btn.addEventListener (MouseEvent.CLICK, dothis);
    addChild (btn);
    addChild (log);
    stage.nativeWindow.visible = true;
       
    }
    public void dothis(event:Event):void {}
    Page2 = new Page2();
    addChild (log);

    }
    }

    But it has not worked out. Help, please?

    OK there was some compile errors in your class page 2. but no worries, I got em. Here's the code corrected for class Page1:

    package
    {
        //Remember to import all of the classes that you
        //are using
        import flash.display.Sprite;
        import flash.events.MouseEvent;
    
        import qnx.ui.buttons.LabelButton;
    
        // The following metadata specifies the size and properties of the canvas that
        // this application should occupy on the BlackBerry PlayBook screen.
        [SWF(width="1024", height="600", backgroundColor="#FFF000", frameRate="30")]
        public class Page1 extends Sprite
        {
            private var page2:Page2;
    
            public function Page1()
            {
                //initiate new object here to use later
                page2 = new Page2();
    
                var labButton:LabelButton = new LabelButton();
    
                labButton.label = "Click";
                labButton.setPosition(10,50);
                labButton.addEventListener(MouseEvent.CLICK,dothis);
    
                addChild(labButton);
    
                //addChild(log); //dont know where you declared this so commented out
                stage.nativeWindow.visible = true;
            }
            //change the event to MouseEvent since that is what you
            //are listening for
            public function dothis(event:MouseEvent):void {
    
                addChild(page2);
                //addChild(log); //dont know where you declared this so commented out
    
            }
        }
    }
    

    and here's the code fixed to your class page 2:

    package
    {
        import flash.display.Sprite;
    
        import qnx.ui.buttons.LabelButton;
    
        public class Page2 extends Sprite
        {
            public function Page2()
            {
                var label:LabelButton = new LabelButton();
                label.label = "Welcome to Second Page";
                addChild(label);
            }
        }
    }
    

    in your first class Page1 I combined the label and the button in the class LabelButton() of QNX. This code should now work correctly (tested and it went well).

  • How to navigate to another page when I press the button

    Hello

    I want to know how to navigate from one page to another when I press the button.

    I want to condition function so I want to sail from bean managed for this action of button.

    can someone tell me please how to do?

    also how to throw error manually if assume that any condition in the get method of failure.

    Thanks in advance,
    SAN

    Hi user,

    as we have, you have requested a post on the connection,

    so I guess that since your post make a connection

    http://kohlivikram.blogspot.com/2008/10/how-to-create-simple-login-page-in-ADF.html

  • Button to navigate to another page does not not work properly all the time.

    Hello

    I'm just starting to explore the ADF, I use Jdeveloper 12.1.3.0.0 and integrated weblogic server that comes with the IDE.

    I just created a simple application with a welcome page called Main.jsf and then 2 task bounded, streams called SearchStudentsFlow and Studenloansflow, each workflow has a jsf page. The home page has a single button that sends me to the first task flow, SearchStudentsFlow and I can see is the page in that workflow, AwardsSearch.jsf. Also in the AwardsSearch.jsf page I have a button that takes back me to the home page.

    The first problem I have is that when I run the application starting at the home page button in the works of the great homepage the first time, the button send me to the AwardsSearch.jsf , but once I decide to go back to the homepage and then click on the button to go to the first task flow the button does nothing. This happens whenever I decide to return to the home page of any page in my project.

    Also, I copied the entire previous project into a new project and I decided to use the ADF security infrastructure in this new project to create a log in page create users and give them different roles and levels of access.

    I created some users who have access to all pages and all the streams, but when I run the application starts the login page and I login successfully and go to the home page, the button on the home page does not work.


    I don't know why the button sometimes works, but not of others and also I do not know why when I use the login page, the button doesn't work. I don't know if these 2 problems are related or not.


    This is my code in the homepage:

    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="Main.jsf" id="d1" binding="#{backingBeanScope.backing_Main.d1}">
            <af:form id="f1" binding="#{backingBeanScope.backing_Main.f1}">
                <af:panelGridLayout id="pgl1" binding="#{backingBeanScope.backing_Main.pgl1}">
                    <af:gridRow marginTop="5px" height="20%" id="gr1" binding="#{backingBeanScope.backing_Main.gr1}">
                        <af:gridCell marginStart="5px" width="34%" marginEnd="5px" id="gc1"
                                     binding="#{backingBeanScope.backing_Main.gc1}">
                            <af:image source="/images/NU_Logo_purple.jpg" shortDesc="Northwester University" id="i1"
                                      binding="#{backingBeanScope.backing_Main.i1}"
                                      inlineStyle="width:293px; height:197px;"/>
                        </af:gridCell>
                        <af:gridCell id="gc3" binding="#{backingBeanScope.backing_Main.gc3}" width="33%"/>
                        <af:gridCell id="gc4" binding="#{backingBeanScope.backing_Main.gc4}" width="33%"/>
                    </af:gridRow>
                    <af:gridRow id="gr3" binding="#{backingBeanScope.backing_Main.gr3}" height="10%">
                        <af:gridCell id="gc5" binding="#{backingBeanScope.backing_Main.gc5}"/>
                        <af:gridCell id="gc6" binding="#{backingBeanScope.backing_Main.gc6}">
                            <af:button text="Search Awards" id="b1" binding="#{backingBeanScope.backing_Main.b1}"
                                       action="goSearchAwards"/>
                        </af:gridCell>
                        <af:gridCell id="gc7" binding="#{backingBeanScope.backing_Main.gc7}"/>
                    </af:gridRow>
                    <af:gridRow marginTop="5px" height="70%" marginBottom="5px" id="gr2"
                                binding="#{backingBeanScope.backing_Main.gr2}">
                        <af:gridCell marginStart="5px" width="100%" marginEnd="5px" id="gc2"
                                     binding="#{backingBeanScope.backing_Main.gc2}"/>
                    </af:gridRow>
                </af:panelGridLayout>
            </af:form>
        </af:document>
        <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_Main-->
    </f:view>
    

    And this is my code in the adfc-config. XML

    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <view id="Main">
        <page>/Main.jsf</page>
      </view>
      <task-flow-call id="SearchStudentsFlow">
        <task-flow-reference>
          <document>/WEB-INF/SearchStudentsFlow.xml</document>
          <id>SearchStudentsFlow</id>
        </task-flow-reference>
      </task-flow-call>
      <control-flow-rule id="__3">
        <from-activity-id>Main</from-activity-id>
        <control-flow-case id="__5">
          <from-outcome>goSearchAwards</from-outcome>
          <to-activity-id>SearchStudentsFlow</to-activity-id>
        </control-flow-case>
      </control-flow-rule>
      <managed-bean id="__4">
        <managed-bean-name>backing_AwardsSearch</managed-bean-name>
        <managed-bean-class>view.backing.AwardsSearch</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1AwardsSearch.jsf-->
      </managed-bean>
      <managed-bean id="__2">
        <managed-bean-name>backing_Main</managed-bean-name>
        <managed-bean-class>view.backing.Main</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1Main.jsf-->
      </managed-bean>
    </adfc-config>
    

    No idea why the button does not work correctly all the time?

    Thanks in advance

    Play well!

    Now, we understand the problem and can help you solve it.

    The problem is that you dropped the home page in the flow of student loan and place you thinking that you must return to the point of departure, the unlimited workflow. Actually, you don't the sheet flow loan student but simply see the homepage as part of the loan flow. The navigation rules remain those defined in the flow of student loan. Now, when you click on a button to jump to the stream of research, the target is undefined zed you simply stay on the same page, the home page.

    To make your work use case, you set a return action in the flow of student loan that return to the caller, the flow of research which, in turn, will return to his name the workflow without terminals that hold the homepage. Remove the homepage of flow of charge to students. The case of navigation allows to navigate between the button and the new return action.

    In the adf of flow research a wild-card rule that accesses the return operation sends the return flow to the home page. You must remove the sailing time pointing to research prices for the return operation because it can use the same rule of navigation of wild-card then. Then, you add a Bach student load flow navigation rule to the scholarship search page. This navigation is used for the return actionto_searchStudents.

    Timo

  • Call the method call activities before you navigate to the target jsf page

    Dear all,

    I use JDeveloper Studio Edition Version 12.1.3.0.0.

    Requirement:

    I have a stubborn taskflow. The stubborn workflow is without using page fragments.

    I have three pages: login.jsf, admin.jsf, user.jsf. I have a method call activity in the taskflow. The login.jsf is the default page. The page of login.jsf have an af:selectOneRadio with two af:selectItem: Admin and user. It also has an af:button. When the user select the af: af selectItem: selectOneRadio and click on the af: button, it should call the method call activity (doLogin) and based on logic it will redirect to the page admin.jsf or user.jsf page.

    Please find the taskflow below:

    How to achieve the solution to the prescription above.

    Thank you and best regards,

    Susanto Paul

    Hi all

    I'm able to resolve the obligation.

    The post below was really helpful.

    http://andrejusb.blogspot.in/2011/09/programmatic-ADF-task-flow-router.html

    Thank you best regards &,.

    Susanto Paul

  • I Zoom on the page, but if you go to another page and then return to the initial page, zoom has been reset. This didn't happen with Firefox 3.6.1, the zoom level would remain.

    This only happens with my laptop running windows 7. No problem with my desktop running windows vista.

    You are not running in mode for private browsing in Firefox when that happens, you?

  • How can you navigate or Link pages

    Can someone help me to connect a line on a page to the top of a completely different page on my site.
    In others, if I si j' etais was to highlight a line of text and you press on enter it would link to the alternative page?
    Thank you

  • Updated in the database when you go to another page

    When the user has entered data, he can click on a link. Send this link to another web site.
    My wish would be that when they click that link two actions will be performed:

    I close this issue and I create another topic.

  • Referring to the value of the element Page 0 in another page

    Apex: 4.2

    All,

    On my page 0, I gave 2 parts in stock. P0_QUESTIONS as a screen only and P0_OPTIONS like a Radio button.

    The source of these items are picked on the backend tables based on the: APP_PAGE_ID.

    All on Page 1: I chose an option in the account of radio

    If I want to see the value above in Page 3, how to do?

    As the elements are on Page 0, there is no point on P1 to designate...

    How can I go?

    TIA,

    J

    J wrote:

    I have ' developing a simple application of review.

    I have two tables,

    (1) QUESTIONS

    (2) OPTIONS

    Each page will have two elements. Question (screen only) and Options (Group of Radio buttons).

    For now, I have two P0_QUESTION and P0_OPTIONS points to the page0.

    The values for the above elements will be extracted from the database based on the APP_PAGE_ID.

    But to store the value of P0_OPTION on each page, I have to create a local element in each page.

    Since there will be a lot of questions, there will be a lot of pages and I wouldn't manually create local objects on each page, instead it is possible to create a component hidden dynamically based on the page no? Or something like a table to store the value?

    It is not practical to create an application with a separate page for each question. This type of application can be dynamically driven data using a question page. Rather than use the 0 page, create a unique question page containing the elements of the question and option (personally I would use relationships rather than objects, but that adds more complexity) and another to store the current number of the question. Before you navigate to the page in question for the first time, create three collections of the APEX. Two collections on queries for issues and the basic options and a third empty one to store the user's responses. On the page in question, back issues and options of the collections instead of the base tables. This ensures that users get consistent questions and options sets, even though they are simultaneously changed by other users. Terms of use on the current number of the question to control the display of the next/previous/Finish buttons or links; conditional calculations on next/previous controls to increment/decrement the current number of the question; a process to register the user in the collection's response; a conditional branch, triggered by control of finishing for a final presentation page; and an unconditional branch to the page in question to scroll through all the questions.

    (This is a good example of a Problem of XY. Rather than ask the question "I develop an application examination.» How can I implement this in APEX? "before you start, you selected an inappropriate solution and asked about the problems that have arisen in its application. You should always include some background to the question and if in doubt about the best approach, describe the requirements, not a proposed solution)

  • TREE, link to another page in the application without authentication

    Hello

    I'm working on APEX 4.1.1 , I used region of the tree to make my menu of the application. My problem is in all parts of the tree, I do a redirect to a specific page ID (in another application), and I'm trying to do an automatic authentication, but his does not work:

    My region requestio tree:

    Select case when connect_by_isleaf = 1 then 0

    When level = 1 then 1

    else                           -1

    end the status,

    level,

    'ÉTIQUETTE' as the title,.

    NULL as an icon,

    "ID_PAGE" as a value.

    NULL as ToolTip,

    M.num_app |': ' | v('SESSION') |': ' | M.REQUEST link

    MY_TREE m

    Start with M.LABEL = 'START '.

    connect prior "ID_PAGE" = "ID_PAGE_PARENT."

    brothers and sisters of order by 'ID_PAGE.

    Suppose that my main application containing my menu tree = 500 and the target page, ID is on the apllication page 501 on page 101 ID of my App ID 501 I add a process header before that get the username and password cookies and call apex API to login.

    Thanks for your replies.

    Yosof

    This thread Re: navigate between two applications in the same workspace without sing again suggests that you don't have to do any coding.

    See what happens when you navigate to a page that is not the login page. A non-public page.

    What I know of the login process, is that it changes the session id.

    Nicolette

  • Do not apply to if driven page from another page in the CSS site

    Hello

    Completely new to dreamweaver. Built a site a few months ago and during the updating of the content, that I decided to update the style as well by using the CSS.

    Strange problem...

    When you navigate to the page contact us directly via a URL or anything but a page of the site, the NCC applies and Web page well.

    However, if you browse the form on the page contact us About Us page style all is lost.

    Below is the encoding of my navigation bar. I compared it on all pages, and it's the same thing. Does not work why CSS do not apply for this specific one.

    < nav id = 'mainnav' >

    < ul >

    < li > < a href = "index.html" > home < /a > < /li >

    < li > < a href = "TheCollection.html" > Collection < /a > < /li > ""

    < li > < a href = "News.html" > News < /a > < /li > ""

    < li > < a href = "About.html" class = "brochures" > about us < /a > < /li > "

    < li > < a href = "Contact.html" > contact us < /a > < /li >

    < /ul >

    < / nav >

    Any advice appreciated and let me know if I can provide anything that could help you to help me.

    Thank you!

    S

    You have 2 different pages of the Contact.

    Since the page welcome links Contact Us.html and About.html page he links to Contact.html

Maybe you are looking for