How to link to another page in same application?

I think I have a brain fog right now. Cause I can't figure this out.
I would like to link to another page in the same application by way of just an arbitrary word in a paragraph.
I am not trying to pass any values. I am not using a button or a text item.
How can I make a link out of a word?
Thanks much,
Maggie

Hi Maggie!
I imagine myself, that you have a html text and you want to have a hyperlink to another page in your application.
For instance you have a text like: "I want to create a hyperlink to a page"
Now, if your mouse passes the word "hyperlink", you want to see that magic 'hand'.
First copy the URL of the target page: something like this -> "http://127.0.0.1:8080/apex/f?p=100:2:3122716493255005::NO:::"
Than change your html text in this way:
I want to create a hyperlink to a page
I hope, it helps
Gerhard

Similar Messages

  • How to link from another page directly to a photo within a Spry gallery?

    I have created a page that has a photo gallery using Donald's tutorial to make a spry photo gallery. I have a need to link to a specific photo in that gallery from another page. I have seen the discussions on how to do this with tabbed panels etc.. but wondering how to do it in this context.

    Add default slide to the constructor and use a similar process to http://foundationphp.com/tutorials/spry_url_utils.php
    var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
        defaultSlide: 2,
        widgetID: "ImageSlideShow",
        injectionType: "replace",
        autoPlay: true,
        displayInterval: 4000,
        transitionDuration: 2000,
        componentOrder: ["view", "controls"],
        plugIns: [ Spry.Widget.ImageSlideShow.PanAndZoomPlugin ]
    Gramps

  • How to refer image shown in one page in another page in same application

    Hi,
    I am facing some issue in show images on plugin, I uploaded imaged on table, I am able to show those images on region and report. But not able to show the image inside the plugin
    I am using apex 4.1 and oracle 10 express edition installed
    I am using plugin org chart plugin to show the organization details details of the plugin is mentioned below
    >>http://apex-plugin.com/oracle-apex-plugins/region-plugin/google-visualizations-orgchart_187.html
    To display image on report and region i am using the below method
    >><img src="'|| apex_util.get_blob_file_src('P3_PHOTO_BLOB',l_hr_id) ||'" width="200px" />
    I need expert suggestion why i am not able to display inside plugin region, Also I was thinking like show the image in another page and refer that in side plugin.
    I am able to display workspace image inside plugin only issue is with not able to show the table stored images.
    Thanks
    Sudhir

    Hi,
    Its working fine in http://apex.oracle.com Please find the below credential details
    UserName: MERUDEV
    WorkSpace: [email protected]
    Password: MERUDEV
    Application ID = 43986
    Created two pages
    Page - 1 is where we upload the image,
    Page -2 is where i have uploaded the google org chart and populating the employee reporting structure.
    inside this org region i need to show the uploaded image.
    It's working fine here in the ape.oracle.com.
    In my local machine its not working, Dont know what is the issue. I am using apex4 and oracle 10g xe version. Please suggest me
    Thanks
    Sudhir

  • JSON error when trying to redirect to another page in same application

    I'm trying to set up a PL/SQL dynamic action that is triggered by clicking on a button.  The dynamic action sets two values in a table and then I would like to redirect to another page.  Setting the values works fine.  The code is below:
    declare
    l_information varchar2(255) := :P94_FILENAME;
    BEGIN
    commit;
    UPDATE VDI_METADATA
    SET CREATEUSERLISTNAME = l_information,
        CREATEUSERLISTON = sysdate();
    commit;
    htp.init;
    owa_util.redirect_url('f?p=&APP_ID.:81:&APP_SESSION.::NO:::');
    END;
    The redirect fails with the following eror:
    "Error: parseerror: JSON.parse: unexpected non-whitespace character after JSON data"
    I've tried several approaches, using the suggestions in this forum on how to redirect to a page from within PL/SQL .  None of them result in success.
    Can anyone tell me: What is the system complaining about?  And is there a work-around?
    Thank you.

    John,
    I would recommend adding another true action in your dynamic action that executes javascript.  the logic would just be redirect('f?p=&APP_ID.:81:&APP_SESSION.::NO:::');
    Then remove everything after the commit in your pl/sql action.
    David

  • Link to another page in a new browser window

    Hey Guys,
    I wanted to know how to set up a link to another page that loads up in a new browser window.
    This what my code looks like:
    <!--
    htp.print('<center>' || :P1_11 );
    htp.print('
    --!>
    This works but the problem is that it goes straight to the login window and asks the user to login again and then it goes to the desired page. Is there a way to set up the link so it goes directly to the new page in a new browser without having the user to log in again?

    Have you tried using the #SESSION# substitution string in the URL instead of hard-coding the session ID into the link?
    By the way, why is so much of your stuff in anonymous blocks/procedures? Just curious.
    Earl

  • Calendar Day Link to Another Page

    I have a Page which has Date as LOV with Submit With Select (This is Page 10)
    e.g. User selects a date, report is displayed based on date selected. This is done using Select list with Submit. Date is populated using LOV based on query. The default value of date is Maximum of date in on of my date column.
    The above think works great. No problem so far.
    I want to create calendar view which is another page (This is Page 20) .
    Calendar is created using Calendar wizard. In Calendar, I want to link Day to above Page. I can create day link which links back to Page 10 and also report data is displayed based on date selected in Calendar.
    Now, the problem: The problem is value of Date field on above page (Page 10) is always set to default value. Although, I have said that default value should only set when session state is NULL.
    So my question is why Date (Display value) is not set to value passed from Calendar Page. I have checked Session info and correct value of date is present.
    What should I do to correct this problem ?
    The other question is :
    How to disable calendar day link when there is no data to be displayed ? At present, as soon as I create a Day link, all the Days in Calendar are linked, what I want is, to hightlight/clickable which has only some data.
    How should I do this ?
    Thanks
    Sanjay

    Sanjay,
    Instead of using the Day Link feature, you can create a link in the SQL query for the calendar region. This will accomplish both of your goals: It will pass the value to your other page, and it will only appear for days where there is a value.
    If you look at the Orders page of the sample application, you'll see that the SQL for the calendar is :
    select '<a title="Order Detail" href="f?p=&APP_ID.:29:' || :APP_SESSION || '::::P29_ORDER_ID:' || order_id || '">' || to_char(order_total, '$999,999') || '</a>
    ' ord, order_timestamp
    from demo_orders o, demo_users u
    where o.user_id = u.user_id and (u.user_name = :APP_USER
    or :APP_USER = 'ADMIN')
    The query returns two columns: The value to display, and a date. In this case, the value to display is a link to another page. The link passes a value for the P29_ORDER_ID value.
    Documentation for the link syntax is available here: http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10992/mvl_fund.htm#sthref446

  • Using the nav bar to link to another page.

    It is possible to use the nave bar to link to another page such as a blog?
    Example:
    Welcome About Me My Photos Blog (linked to external blog such as blogger)

    If you want the link to the external page to appear in the default navbar then do the following:
    1 - create a blank page and name it the way you want it in the navbar.
    2 - add an HTML Snippet to that page with the following code in it:
    <script type="text/javascript">
    parent.window.location = "URL TO THE EXTERNAL PAGE"; </script>
    What this does is automatically redirect the viewer to the external page when the link in the navbar is clicked on.
    My Demo Sites are setup this way. The Contents page for each site is redirected to a separate Contents site which contains the index of all the pages in the three demo sites. That way I only have to change the index on the Contents site instead of doing it for each site individually.
    If you want the other page to open in a new window you'll have to create a separate text based hyperlink and use the Inspector/Link pane to link the text to it and check the open in new window option. If you need to have that in the navbar you can create a texbased navbar, hide the default one and set your links as needed in the Inspector/Link pane. This is a demo page of a Text Based Navbar.
    OT
    Message was edited by: Old Toad

  • How do I link to another page in the same iBook?

    I am trying to link from within the text of my book to another page in the same iBook. How do I do that in iBooks Author?
    For example...
    The text on page 1 might read.... "If you'd like to jump to the page on herbivores, click here". And that text would be linked to page 49, which is about herbivored.
    Any ideas? Greatly appreciated!!

    It looks like I figured this out by playing around with it.
    The reason that I couldn't bookmark the text earlier is that I had created a text box and entered text in there. When you create a text box, that text is not recognized by the bookmark widget. However when you type directly into the page template itself, it recognizes the text just fine. I'm able to set bookmarks and then link to those bookmarks using the hyperlink featuer. Looks like it's solved, I was just trying to use the wrong tool for text entering.
    Thanks for your help Don, you've been great!

  • How to add a link to another page

    Hello,
    I am new to Adobe Designer 7.0, I'm liking it so far, I had a question though, I was wondering how I could make a link from one page to another. For instance, I want to have a table of contents and I want the user to be able to click on the word whatever that may be and for it to go to the page which they chose.
    I appreciate your responses!!
    Mac Mendez

    Mac, the best way to do this is use a Button and change it to look like a hyperlink (color, etc.). Add a setFocus JavaScript on the Click event to a field on the page you want it to go to; e.g.,
    xfa.host.setFocus("Page3.TextField1");
    If there is not a field on the page, make a hidden field for it to jump to.

  • How to make a title of region as a link to another page?

    Hi there,
    I need to hyperlink a region title, so when I click in the title I will go to another page in the app without login agian, In other words keep the same session.
    Thanks,
    abdul
    Edited by: dtabed on May 12, 2009 1:40 PM

    Abdul
    The full link would be
    http://host:port/pls[if using mod_plsql handler]/f?p=&APP_ID.:&APP_PAGE_ID.[if to a specific page]:&APP_SESSION.Hope this helps
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

  • Linking to another page (sheet) in the same workbook?

    Hi,
    Can somebody please confirm that Numbers does NOT offer the possiblity to have a hyperlink linking to another sheet within the same workbook?
    I have a few switchers at my office who couldn't get it to work, and I couldn't find any info about it either, so now they have to work in Office 2003 within Windows, just because of this
    Thanks.

    In the current version of Numbers, hyperlinks are limited to opening web pages in browsers & email messages in email client applications. Even if a new, enhanced version honored a wider range of URL's, say of the "file://" type, they would probably open a new window in an appropriate application.
    As I don't believe individual sheets in a Numbers document have URL's (or URI's?), it is unlikely that an enhanced hyperlink feature would be suitable for what you want to do.
    You can, of course, quickly move between sheets by clicking on their names in the "Sheets" pane, so perhaps a combination of descriptive sheet names & text boxes in selected sheets saying something like "Click 'Sales' to see more' would be an acceptable workaround.

  • How to link between two regions in same Dashboard

    Hi All,
    I created one Dashboard.In that Dashboard i have 2 regions.One region contains with Buttons.Another region contains with Report.
    My Requirement is if i click Particular button(Emp).I want employee details report in my second region.
    How to do this.Please help me.
    http://apex.oracle.com/ Details:
    workspace:RAGHUVARMA
    U.N:[email protected]
    p.w:sateesh1
    application ID:25244
    Thanks&Regards,
    Raghu

    Hello Raghu,
    It depends on your requirement. First of all, it does not look like a dash board to me. Please refer any Package Application for Dashboards. For e.g. Home page in Issue Tracker
    If I have 10 report regions, and I have to display respective region when I click on button/link. then I will go with
    * Create 10 pages, one for each report
    * Create a "list" region in Page 0 with the condition to display only in above 10 pages. And this list will have links to above pages. And you can change "List Template" according to your requirement. (Horizontal or Vertical etc.)
    Hope it helps.
    Regards,
    Hari

  • How can i reset another page when call it from a page

    I use JDeveloper 10.3 to develop my application. And I want to reset value of UI component (inputtex, selectInputDate . . .) of a page when i call it from another page.
    Thanks!

    You can execute a method in "backing bean/Application module" on page load which can set the value of the UI components. Following link can help you to
    [http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html|http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html] .
    ~Vikram

  • How to switch to another page when clicking a button

    I have a main frame consits of many button.What I need to do when click
    a button,it switch to another page?
    Thanx....

    Try this, it should work.
    // not tested
    JButton linkButton = new JButton("<html><a href=\"http://forum.java.sun.com\">link to<br>forum</a></html>");

  • I'm using pages 5.2 and feeling completely stupid by not knowing how to link two text pages together. Can anyone help? please...

    Hi there, I'm trying to use pages 5.2 for the first time and I cannot find how to connect two consecutive pages together as I use to do with earlier versions of Pages... Any help?

    Word Processing templates have what is called a Document Body.
    That is the area defined by the margins and holds a default text area which flows from page to page.
    Examples of WP templates are the Letters, Reports, CVs etc.
    Layout templates have that switched off and require you to add Textboxes or Shapes into which you can type text. Each page is an individual Section and no text flows from page to page.
    Examples of Layout templates are the Brochures, Business Cards, Posters, Newsletters etc
    In Pages '09 you can manually link Textboxes to flow in your own set order and across pages. Pages 5 has dropped this along with 100 other features.
    Peter

Maybe you are looking for