Reusing a page as a region in other pages

Hi All,
I have a requirement. I want to reuse a page as a show hide region in other pages.
Please suggest a way to do the same.
Version: Oracle Apex 4.2
Thanks and regards,
Abhishek Arora

I'd use iframes. I've got an example on how to apply hide and show of an other region in a report. It's on my blog, which you can find here:
http://vincentdeelen.blogspot.com/2013/07/show-report-details-in-line.html
Vincent Deelen: Detail section in line with report, part 2
There is always some debate about using iframes, I've mentioned a few issues in the posts.
Please let no if you need any further help.

Similar Messages

  • Open a page within a region on another page?

    Hello!
    Is it possible to open a page, within a region on another page? Similar to the way frames work? I have links in a column on the left side of a page and nothing on the right side (big white space), so I thought I would try to open up a page in the white space, depending on which link was clicked on the left side.
    Thanks!

    Hi - aren't you in danger of overcomplicating this?
    If you put your links in an APEX List, you could branch to the different pages (and always have the list of links in a sidebar on the left), so the effect would be similar.
    The thing is, you need the pages in order to have the content to pull in, so you're not saving on the work of creating and maintaining the pages, plus you need to fiddle with the template for those pages to remove headings etc. Also, you can get some interesting side-effects if you implement branching on the pages.
    It is possible to have an iframe in a region on a page that references another page. For a reason I forget now we implemented this as a dynamic PL/SQL region, a bit like this (purists look away now):
    declare
      l_html VARCHAR2(4000);
    begin
      l_html := '<table><td><tr>';
      l_html := l_html || '<iframe name="Messages" height="220" width="950" frameborder="0" src="f?p=&APP_ID.:110:&SESSION.:::::" scrolling="auto">
    </iframe>';
      l_html := l_html || '</tr></td></table>';
      htp.p(l_html);
    end;It wouldn't be hard to make the page number (110 in the above example) dynamic depending on what link or button you clicked.
    Another thing you could do is to have a completely dynamic PL/SQL region, using a function that perhaps retrieved a chunk of text from a database table, and then you'd probably want to implement it via Ajax...
    Wait, did I say something about not overcomplicating things? I don't know, APEX gets you that way...
    John.

  • Renamed Home page to "index," now my other pages' links to home won't work

    I made a website on Iweb, bought a domain name from Hosting4less, and got an ftp client (cyberduck) to upload it. The Hosting4less support guy told me to rename my "home" page to "index" so that everything would actually show up once I'd uploaded it. This worked, and now, starting from home, I can go to any page. However, from the other pages, when I click back to the home link, I get this:
    The requested URL /Home.html was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    I guess the renaming mixed up the other pages' links to the home page. How do I fix this? I don't know code, so I can't really go in and fix it that way. It seems like Iweb won't allow it either... help???

    Hi and welcome,
    with iWeb you don't need to rename any page to "index" as publishing already creates a page called "index".
    I guess you're publishing to a folder, the result of publishing is an index.html file and a folder named with the name you gave to the site in iWeb. You have to upload the folder and the index.html file.
    Pages should never be renamed after you publish as that breaks the whole structure of the website (all the links that refer to this page).
    Republish from iWeb and reupload (also don't name a page index in iWeb as that may conflict with iWeb already generating such files).
    Regards,
    Cédric

  • The connection to complaints.donotcall.gov was interrupted while the page was loading." All other pages load okay. Everything loads perfectly on I/E 8

    When logging on to the "do not call website" to file a complaint I get the following message "The connection to complaints.donotcall.gov was interrupted while the page was loading." All other pages load okay. Everything loads perfectly on I/E 8.
    I have started Firefox in the safe mode and got the same results.
    Turned off firewall and virus programs, no help. I have 2 new computers about 2 years old both have the same problem with ver. 12.0

    Try to rename the cert8.db file in the Firefox profile folder to cert8.db.old or delete the cert8.db file to remove intermediate certificates that Firefox has stored.
    If that helped to solve the problem then you can remove the renamed cert8.db.old file.<br />
    Otherwise you can rename (or copy) the cert8.db.old file to cert8.db to restore the previous intermediate certificates.<br />
    Firefox will automatically store intermediate certificates when you visit websites that send such a certificate.

  • How can I display de last items of a region from other page in Portal?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format these attributes).
    Thanks a lot.

    How can I display the last items of a region from other Oracle Portal page?

  • Cannot open gmail page says server error, but other pages from google tool bar work just fine

    I cannot access gmail from any opiton, web address, or tool bar. it gives an error of cannot find root? other pages from the tool bar work ie, utube, or g +..............I have checked my cookies and all are accepted. Specific message is: This page isn't redirecting properly Firefox has dected that the server is redirecting the request for this address in a way that will never complete. this problem can sometimes be caused by disabling or refusing to accept cookies.

    I have alike problem: I can access my account on Google+ or YouTube but when I try access GMail or Calendar I see error message about invalid redirect to https://accounts.google.com/CookieMismatch ("server redirects to this address in such way that request will never complete") with comment that this error usually occures when cookies are disabled. But I see that cookies are enabled in FireFox Setup. What's wrong?

  • Submit a page , close a page and pass values to other page

    Hi All,
    I have page , which has a text box P2_TEST
    I will click on a link on page 2, then a pop up page( page number 3) will appear . Its done using javascript.
    The popup page, has a OK button.
    Whenever I click on OK button,
    1)page 3 has to be closed.
    2)P2_TEST has to be populated with P3_TEST Value. ( P3_TEST is a text field in page 3)
    3)Cursor Should come back to P2_NAME
    which is some other field in Page 2.
    How do do this?
    Thanks in advance.
    Archana

    Thanks Tim.
    I could solve the problem using javascript.
    I have used the following javascript.
    <script>
    function test(){
    var radioLength = document.wwv_flow.p_v01.length;
    var retVal = '';
    if(radioLength == undefined)
              if(document.wwv_flow.p_v01.checked)
                   retVal = document.wwv_flow.p_v01.value;
              else
                   return "";
         for(var i = 0; i < radioLength; i++) {
              if(document.wwv_flow.p_v01.checked) {
                   retVal = retVal + ';' +document.wwv_flow.p_v01[i].value;
    retVal = retVal.substring(1, retVal.length);
    opener.document.getElementById('P1_TEST').value = retVal;
    window.close();
    </script>
    Now the problem is solved!!
    Thanks,
    Archana

  • Newb in trouble :( - How do I set a home page/ link it to my other pages? CSS style.

    I'm scouring these forums looking for someone who can reply to me in real time. Basically, I need to create a basic website for a project, where I have a main page, linking to my other pages that are divided by content. For example, main page would have a brief explanation of what the site is about, and then if you clicked on some text in my explanations, etc, it would link you to a different page on my site. Here are some things I am stuck on:
    How do i make one page the first one you'd see if you opened the website?
    How do i hyperlink to pages within my local root?
    How do I hyperlink to internet based online pages?
    How do i burn the whole website onto a cd, so that if I were to give the cd to someone else, all the local links AND the internet links would work?
    These questions are all I need to figure out right now. If anyone could help I'd be grateful. I'll be refreshing this for a few hours

    How do i make one page the first one you'd see if you opened the website?
    Save it with a filename that appears in your host's default filename list.  Ask your host what filenames appear in that list - usually "index.html" is there.  You could try that filename first....
    How do i hyperlink to pages within my local root?
    Select the text for the link trigger, and use the Link field of the Property inspector to browse to and select the target filename in your local site.
    How do I hyperlink to internet based online pages?
    Pages that are not present in your local root folder?  You'd have to enter those links manually by selecting the text for the link trigger, and entering "http://www.example.com/path_to_file.html" in the Link field of the Property inspector.  It's important that you enter the *fully qualified* address of the page, i.e., the protocol (http://) the domain name (www.example.com) and the path to the file (/path_to_file.html).
    How do i burn the whole website onto a cd, so that if I were to give the cd to someone else, all the local links AND the internet links would work?
    Copy all the files within the local root folder to the CD.  If you have made the links properly, they will all work (provided the user is connected to the internet when using the CD, and provided they initially open (manually) the "index.html" file to start.

  • I want to force SSL on some pages and NO SSL on other pages

    I have looked at webflow and it is not obviously clear to me how to:
    1.  Enforce NON SSL on some pages ... (like search page, catalog, product list pages ) to improve performance.
    2.  Force SSL on other pages  .... (like account edit page, beyond the obvious checkout pages)
    One way I was thinking off was to use a URL rewrite intercept to do that.
    The webflow seems to be a mechanism to build page flows enforcing SSL on the next page called.   But what if the user is the person directly clicking on a link that should be SSL'ed say Account Update.
    Currently ... we are ssl'ing the whole site.
    Mike

    I have it within an ascx control which appears on each page. Alternatively, within the common.master.master codebehind page load event. I think the problem with the webflow is that you need to know which page a user is coming from to be able to take them into (and then out of) secure mode. This code ensures that certain pages are secure and others are not.
    Also, Fname in the above example is the name of the page that is being requested:
    Fname = mid(Request.Path, Request.Path.LastIndexOf("/") +2,len(Request.Path) - (Request.Path.LastIndexOf("/") +1) )
    Edited by: Martin Barrett on Jul 23, 2009 4:07 PM
    Edited by: Martin Barrett on Jul 23, 2009 4:10 PM

  • Close page using javscript and set other page item values

    hy all, i'm trying to create a sort of pop up page.. i open this page (lets say 100) from another page(lets 101).. the page number 100 is opened as a pop up window. it is a report page, so i'd like by clciking the value of one culomn set some values for the item of page101 and close it..
    i'm trying to do it with javscript, but it doesnt work..
    could u maybe help me.. thanks

    Take a look at the HowTo on creating popup pages:
    Build Custom Popup Pages in Oracle Application Express<br><br>
    After completing this How-To, you should understand:<br>
    <br>
    * How to make a custom popup window page in an HTML DB application<br>
    * Passing values from a form page to a popup window.<br>
    * Passing values back from a popup window to the opening form page.

  • How to populate a filter field in one page with the value from other page

    Take the classic report with form application.
    on page 1 (report) I have a filter (dbname) for the records that will appear in the report. Say that, I enter "ap02" in the filter and all records where dbname starts with "ap02" will display. It works ok.
    Then I click on "create" button and page 2 appears. I enter all fields except the dbname. This field is generated, at "pre-insert trigger on the table".
    What I want is when I press the button "create" on page 2 to pass the value of the generated dbname field into the filter in page 1 so when that page refreshes I will have only one record on the report page (1). I understand that the dbname at the page 2 level still empty because it is generated by the trigger. How do I have access to that info to populate the filter.
    Thanks for your assistance

    Joe - Work backwards from the value generated during the execution of the trigger. You have the value there so you could save it into a package variable right then (create a package with a variable and assign the value to the variable). Then create a process on the page (after the DML process) to assign the value of your package variable to a page item. Then in the branch back to page 1, pass the item. (Or without messing with the branch, the process could simply assign the package variable directly the the page 1 item -- :P1_ITEM := my_package.my_var; ).
    An alternative would be to use the "returning into" feature of DML to capture the PK of the created record into an item. Then the next page process could use the PK to fetch the new row and get the dbname value for passing to page 1.
    Another option would be to update session state directly in the trigger.
    Scott

  • How I can to know in JSP if one page has been called by other page

    Hi,
    I have a JSP portlet with one form to submit some information about clients.
    When the visitor click one image the form is submitted correctly and the information is stored into database.
    The problem is that I can't clean the values of the strings after the insert and when I call the page again, the code insert again the last information in the form.
    My JSP code is supported in the feedback code of JPDK, but I can't ask for the value of submit button because the submit is done by the click over the image, with the next code:
    <img height=16 alt=Submit src="/pictures/stacksite/form_send.gif"
    width=99 border=0>
    I ask for one input box required, if is null run the insert code, if don't I display the form page.
    How I can clean this variables or how I know if the page has been submitted immediatly before. What variable I can request in JSP to know that or what I can do?
    Regards,
    FABIAN

    I'm not sure that any javascript is necessary. You just need to turn the image into a 'proper' submit button, using the <BUTTON> element. This will cause the form and all its data to be POSTED, rather than to be sent as a query in a GET request. Note that it is important that the form passes on the value of the PortletRendererUtil.PAGE_LINK parameter using a hidden field, so that the jsp remembers the portal 'context' it is running in. E.g.
    <%
    // Derive a portlet-specific name for the submit parameter
    String submitParam = HttpPortletRendererUtil.portletParameter(request, "submit");
    if (request.getParameter(submitParam) != null )
    ... handle the data ...
    %>
    <form name="contactinfo" method="POST" action="<%= HttpPortletRendererUtil.htmlFormActionLink(request,PortletRendererUtil.PAGE_LINK) %>" >
    <%= HttpPortletRendererUtil.htmlFormHiddenFields(request,PortletRendererUtil.PAGE_LINK) %>
    <BUTTON name="<%= submitParam %>" value="submit" type="submit"><IMG src="/pictures/stacksite/form_send.gif" alt="submit"></BUTTON>
    </FORM>
    null

  • Why Is The Menu On The Master Page BELOW The Objects In Other Pages?

    I added a menu on the master page using the Composition widget called featured news and it stays behind the other objects on normal pages.
    How do I fix this? Here are the pictures of the menu when it's closed and when it's open.

    Make a new layer, which is by default placed above all other layers.
    Go to your master page and drag the menu onto this layer.

  • I have 2 pages up I can't see how to exit one page and still have the other page up I have to close an re click on the icon

    I do not see a way to close one page. I may have 3or4 different pages up but I cannot close one page with out having to close fire fox entirely. I have to go back to your icon and start all over. Thanks Dave In Austin Texas

    Set the pref <b>browser.tabs.closeWindowWithLastTab</b> to false on the about:config page to prevent closing the last tab from closing the browser and make a close button appear if only one tab is open.
    *http://kb.mozillazine.org/about:config
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Why does Verizon find the need to change the look of web pages and divert you to other pages?

    Why is it that verizon can't leave well enough alone! It seems everytime I log in I can't, because verizon wants me to go to another page or change my info, I just want my email, I don't want to learn about new products and new offers, If there is a time I feel te need, I will come looking, don't shove it down my throat! Another big problem is when they force you to change something before they will let you accesss your email, reminds me of a trick the Russians pull! (If you know what I mean!) If I wanted my page to look like microsofts page ,I would have their service. If you feel the need to change so often, maybe you are in the wrong business!

    It can be annoying, but I think their motivation is good.  They are trying to make things better for their customers and I think they have, even though sometimes it is annoying.  I think it would be nice if they would advise us when the pages are going to be down for maintenance,  In the mean time, you could have another E mail account so you can always get access to your E mail.

Maybe you are looking for