Region used in many pages

Hello All,
There are many pages in my application that uses the same region, is there any way to create a single region and use it on every page?
Thanks

Hello,
create the region on page zero.
Regards,
Dirk

Similar Messages

  • Variable of Bean Value to be used in many pages.

    Hi all,
    My situation is as follow: I have a page PG1 and when it is rendered I'd like to keep a value in something that I could use in PG2 that calls the PG3 and so on. I tried to use session values with pageContext.putSessionValueDirect("vSession",sessionValue) created in the PG1s Controller but when I tried to catch the value in the PG2 Controllers with pageContext.getSessionValue("vSession") it returns null. The way I'm calling PG2 from PG1 is through Destination URL.
    I can resolve my problem passing the value in the URL but it doesnt seem the best way of keeping a value during all navigation.
    Any suggestions?!?!?!
    Thanks

    Hi,
    There are many ways that you can achieve this requirement. I would not prefer to use the Transaction and Session to hold values, except for the following cases.
    - Session: Until you need to persist the value between two applications within the same session. i.e. holding the value till you move back to the originating application from the application you've navigated to.
    - Transaction: Until the server needs to get hold of a value from the client. Or ever within the server objects.
    For you requirement, I would suggest you to go ahead for the Properties View Object, you can get more details on this in the OAF Guide. Please note that this would work only if the AM is retained across the pages.
    HTH.
    Srinath.

  • Recent loss of embedded QT movies on many page for IE7 using ActiveX object

    I have many pages that allow you to select from 4 video formats including QT .mov. An example is at http://www.cwdjr.net/video4/cancanL.php . The QT object uses ActiveX when on IE only(I use Windows conditional comments) and an ordinary object for most other browsers. Until sometime very recently all of these pages worked when you select the QT file. Now QT works on none of them. I suspected the problem might be due to a very recent Windows XP update which is a large one including .NET updates and other things(K8951847) X 86. I was able to restore to a day before this update, but this did not solve the problem. Of course some portions of some updates can not be removed be restoring to an earlier time, so the result does not prove the update was not at fault.
    The involved pages are mostly written in php on the server, so you will not be able to see very much by viewing the source code. To make the problem more simple to view, I made a test page for QT only and with the ActiveX object only. Thus this test page can not be viewed on most browsers that do not support ActiveX. The test page is at http://www.cwdjr.info/broadbandMedia/formatsAX/qtmovtest2.php . Since I serve pages as valid xhtml 1.1 using the correct mime type application xhtml+xml, no IE browser can view the page, since no IE browser can support xhtml served properly. Thus I have a php include at the very top for header exchange between the browser and server. If this says the page does not support the mime type for xhtml, then php using regular expressions, etc is used to rewrite the page as html 4.01 strict for the outmoded browser. Thus don't be surprised if you find some pages in xhtml and others in html when you check properties.
    The ActiveX object used for QT on the test page is below:
    QT MOV
    (CLICK ABOVE LINK IF NO PLAYER)
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="400" height="295" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="autoplay" value="true" />
    <param name="controller" value="true" />
    <param name="kioskmode" value="true" />
    <param name="src" value="http://www.cwdjr.info/movie/cancan.mov" />
    </object>
    Once the page comes up on IE7, it is rather slow to respond. Then it gives:
    "Web site wants to install the following ActiveX control: 'Quick Time' from 'Apple Inc'".
    If you do try to install, nothing happens. In contrast to my regular pages, I added the code show above just before the start of the object. Clicking this on will bring up the QT video, but of course it is not embedded on the desired page. This may work as a temporary fix for IE. I likely can hide it from other browsers by enclosing it in Microsoft conditional comments.
    I would be interested if anyone else has had such a problem recently or any ideas concerning this strange response on IE7. I am talking about viewing the page on the server. Since this is a php page it can be viewed locally only if you have a server installed on your computer and I do not. The pages with the first url example given above have operated well on IE7, Firefox, Opera, Safari for Windows, Flock, K-Meleon, Google Chrome and SeaMonkey. There are a few players that have some issues with some of the formats, but this and the fact that some players may not be installed is the reason for offering the video in 4 formats. I sometimes offer high broadband versions as well as low broadband versions.
    It seems I spend more time correcting IE issues than for all of the other mentioned browsers combined.

    Thanks for the reference. I use nearly no JS anymore, since it often causes problems with true xhtml served properly even when you use external script files. Often one can use php script on the server and avoid these problems. When one serves as true xhtml using the correct mime type of application/xhtml+xml, the page is parsed with a very strict xml parser rather than a loose-as-a-goose html parser. (If one serves a page written in xhtml code as mime text/html, as is incorrectly done perhaps 99% of the time, you are using only html, not xhtml, and are fooling only yourself. The page is parsed as html instead of xhtml.) The xml parser has to be very strict to account for any possible xml content. Even a single, or even several, errors often will not prevent a html page from showing, but even a single error on an xhtml page served properly will often get an error report from the xml parser rather than a view of the page. One of the most laughable examples of misunderstanding of this issue is the home page of Microsoft. It claims to be xhtml. However it is served as text/html and thus would be better written in html 4.01 in the first place. Moreover, if you validate the page as xhtml at w3c, you find hundreds of xhtml errors. If Microsoft served their home page properly as application/xhtml+xml it of course would not work on any IE browser, at least through IE7, since none of these IE browsers can handle true xhtml. In addition the page likely would not show up on any browser if served as true xhtml until all of the hundreds of xml and other errors on the page were corrected. Instead, one likely would get a very long error report rather than a view of the page.
    Back to JS, document.write will not work in properly served xhtml, because it easily could produce code with XML errors. For instance it might produce code that contains an unclosed tag, which is a major xml error that can cause an xml device to malfunction. The xml parser thus rightly finds document.write as an error and prevents viewing of the page. However one often can generate the same code as document.write would produce on a browser with php on the server. The finished code is what gets downloaded to the browser, so the xml parser can check everything in the finished code rather than quess what a JS document.write might produce. And don't think you can sweep document.write under the rug by using an external JS file. The very strict xml parser finds it.
    Of course embed has never been a w3c tag, but rather is a bad hangover from the browser war era, a gift of Netscape. No page that includes embed can validate as w3c xhtml or xml of any flavor, at least through xhtml 1.1. However the page may work, despite the error, if server as text/html.
    All I know is that something has happened recently that has caused my problem to surface. It likely has to do with some change in the XP OS or IE browser. I have tried viewing several pages written by others that use many types of code for .mov, and all of them I have viewed that use an ActiveX embed for the benefit of IE now have the problem I mentioned. If anyone else with XP and nearly all updates, including the very recent one I mentioned, and the most recent version of QT has had this problem, I could be more confident that the problem comes from an external source. If not, it is still possible the sudden change could be something concerning a specific issue that has developed in my computer.
    Again, thanks for the JS reference. Some of this likely can translate into php so I can compare how the JS and php server script I am using relate.

  • HOW MANY PAGES CAN BE USED

    I HAVE MAYBE MAXED OUT MY APPS PAGE, BUT CAN SOMEONE TELL ME HOW MANY PAGES CAN BE USED, IS THE MAX 12. OR CONTINUOUS UNTIL THE MEMORY IS FILLED?

    There are a maximum of 11 home pages and 180 apps. The downside of adding apps beyond the 11 pages is that it isn't officially supported and can cause problems if too many are added. (Someone posting here complained that adding more than 500 caused the phone to choke.)
    Also, there isn't a good way to delete these apps either directly on the phone or in iTunes. You have to delete the visible apps first until the one you want appears on a page - not very practical.

  • Is there a limit to how many pages i can have for one website using muse/business catalyst?

    is there a limit to how many pages i can have for one website using muse/business catalyst?

    Thank you. I've been searching everywhere and I couldn't find anything the mentioned it. I appreciate the feedback!

  • Few Questions About Migrating Site & Editing Many Pages at Once

    OK. First things first. My manager doesn't want me listing
    our company name in this post since we are currently trying to get
    out of our hosting contract and she doesn't want to jeapordize
    anything in case someone stumbled across the post by a search or
    anything. FYI: I have Dreamweaver CS3.
    So here's the deal. My company would like to move our site
    away from this proprietary WYSIWYG online editor we have. The
    current setup locks us into to this silly online editor for our
    site and doesn't allow access to our files on their server. This
    means that if I want to simply change the file name of a picture on
    our site, I have to log in to their editor and go through about ten
    stupid steps. The problem is, the site is dynamically generated.
    Every page on the site looks something like this at the end:
    default.aspx?pageid=9. Those links are permanently attached to
    specific pages and the content on the individual pages rarely
    changes. I tried using some offline downloaders to grab every page
    of our site in case we move it elsewhere. When these pages are
    downloaded, though, the file names change and it breaks all of the
    links.
    If I go into the code and change every individual link to
    other pages and style sheets I can get it to look good.
    So my first question is: is there a way to easily allow
    Dreamweaver to import a couple hundred dynamically generated pages
    and make them into static pages so that they just look like
    "xyz.com/products.html"? Fortunately, our site is not extremely
    large (maybe 250+ pages) so in an absolute worst case scenario I
    could post a lot of the pages by hand.
    My second question regards changing specific items across many
    pages. Our current site contains the ability to place little
    widgets into pages. This means that if we want a navigation bar on
    a hundred different pages, we just edit the one entry for the
    widget and every page changes. I'm sure this is possible in DW, but
    I spent an hour trying to search online yesterday trying to find
    info and didn't answer my question. Is this what templates are for?
    I saw people mentioning Find All, but this didn't seem like a
    perfect solution. I apologize if this is a very stupid question. No
    one needs to take the time to explain the exact process to me, but
    if someone could just tell me the name of the functionality and if
    they know a specific resource to learn more about it, that would be
    wonderful.
    Whatever this functionality is, would I have to start over from
    scratch with the pages? Or could I implement it with the current
    site that's already put together? I'd be happy to convert the
    site to static HTML if there's an easy way to change multiple pages
    at once other than Find All and Replace.
    Thank you so, so much for any help. I appreciate it. I just
    want to make sure these things are possible before we start the
    ball rolling down that path.

    I think I could answer your questions with just one answer so
    here it goes.
    What you need to do when making this type of mass move from
    an online editor to DW would be to first download a copy of
    everything you have just so you have a backup in case any mistakes
    are made.
    Next with the downloading of the files. You will need to log
    in via FTP in Dreamweaver or via your file manager on the control
    panel of your website. If you are unsure of where this is or how to
    log in via FTP, you may need to contact your host for the login
    information. Even though the files appear to be dynamic I do
    believe that most editors would just store the pages separately and
    just uses includes to make that work. However, if this is not how
    it appears, post back with the name of the editor that you were
    using.
    Next, take one of the files you have. Based on the
    description you are giving me it sounds as if they all look the
    same just with different content (nav bar aside). If this is the
    case you can create a template file in Dreamweaver. Within that
    template you should place the content that is the same for all of
    your pages. Then make one editable region for your content to go
    into. These links can be found from the main toolbar for creating
    editable regions and other template functions (which I believe
    includes the navbar).
    Also one thing to note with templates is that they will
    automatically fix links on the pages when you save the template to
    include new files via links. So you don't have to worry about
    updating all of the pages all of the time. The only thing you would
    need to update the individual pages for would be for the content on
    those pages.
    Hopefully this will get you started in the right direction.
    But as I said in the beginning if you have trouble getting the
    files off of the site post a bit more information about what you
    have and hopefully someone here will be able to point you in the
    right direction.

  • Apex 4.2 dynamic action to refresh a report region on a different page

    Hi,
    I open up a pop up window from a report region. When the user is done in the pop-up window and closes it, can I trigger a refresh on the report region using dynamic actions without actually reloading the whole page? I know I can use dynamic action on a page to refresh the report region on the same page.
    Thanks,
    Sinan

    Sinan,
    So long as the region to be refreshed is still loaded, you can do this. I don't know how you are loading your pop-up or unloading it but, the principle should be the same as what I provide below.
    Assume that you have set the static ID for your report to MY_REPORT. (Be sure you have checked "Allow Partial Page Refresh" in the Report Attributes).
    $('#confirmBox').find('div#userConfirmationMessage').html( '<span class="userInputRequest">Would you to Refresh your Report?</span>' );
    $('#confirmBox').dialog(
        autoOpen: true,
        modal: true,
        title: 'Refresh Conformation',
        buttons:
            'No': function ()
                $(this).dialog('close');
            'Yes': function ()
                $(this).dialog('close');
                 $('#MY_REPORT').trigger('apexrefresh');
    -Joe

  • How to make a link in a report open a Form in a different region of the same page ?

    Hi,
    I developped a report and a form for the same table. I also created a link and used it in my report so that when I click on the link of one record, the form is opened and display this record.
    My problem is that when I include my report as a portlet and I click on a link, the form is opened in full screen mode by replacing the page containing my report.
    What should I do in order to open this form in another region of the same page ?
    Thanks a lot

    I presume that the two regions are working fine with their individual buttons and your issue is how to make them both save with one button.
    Here is how
    a. You will have 2 ApplyMRU and 1 ApplyMRD processes for each of the regions. Right? Lets say you have 2 "Save" (i.e. label=Save) buttons, one has name SUBMIT and the other SAVE ( SUBMIT and SAVE being the requests that will be sent when they are clicked , respectively)
    b. Make the Display condition on one of the buttons 'Never'. Now it won't show when you run the page. Lets say you made SAVE's conditional Display 'Never'
    c. Go and change the condition on all ApplyMRU and ApplyMRD processes from "When Button Pressed" to "Request is contains in Expression1". In Expression1 enter SUBMIT,SAVERegards

  • How many pages can be open in one single tab before I lose the first page of the tab?

    I use a tab for weather info on many places and I have lost the first few ones if I put too many places. Example: First page is Vancouver, last New York, and in the middle many places. How much pages is it safe to put in a single tab without losing ANY places from the beginning of the tab? EXTREMELY irritating to lose ones as I have to put all the places again (of course in fewer numbers)!
    PS.Mozilla: If I shut down Firefox and I'm in the end of the tab containing the previous weather pages, I only get around 10 or so places backwards and lose all others, this SHOULD CHANGE! I want to have at least 30 places backwards there when I come back! Weather is not the only thing where people want tab-pages to be saved and safely there for the next session. This has bothered me for a year, please change this!

    I'm not totally sure how many pages Firefox can remember. Its a lot though. If you want to view them, and count them if you want, click the back icon and hold it and a list will come up of recent web pages. I like your change idea though.
    Cheers
    Jon

  • After updating to 5.1, pages no longer lets me convert long, single page (up to 8 1/2 x 50) document to an 8 1/2 x 11 document with many pages.

    I have been using pages to create a document that I always export in two ways.  1st, I export a single page document that contains all of the data (sometimes this can go as long as 8 1/2 x 50).  I have to do this for web purposes.  Next, I duplicate the document, and change the page setup to 8 1/2 x 11, turning it into a document with many pages. This is for printing purposes.
    Before upgrading to Pages 5.1, this worked flawlessly.  After the upgrade, when I change the document to 8 1/2 x 11, Pages just deletes all of the data after the 11'' mark. 
    I am trying to make it behave like it did before the upgrade: when I convert the document to 8 1/2 x 11, it just made as many new pages as necessary and didn't delete any of the data.
    How can I do this?

    Pages 5 is buggy and has had over 100 fetaures removed.
    Pages '09 should still be in your Applications/iWork folder, use that.
    Peter

  • Using tables in Pages 5.1

    Using tables in Pages 5.1 is a pain in the neck. When I create a full page table the mobility arrows disappear into the space above the page and effectively become inaccessible. I personally don't understand the need for this function and wish the designers would remove it as it really slows down productivity.
    I've tried to increase the size of the window around the pages document but only the sides and bottom allow for this to happen. The top border automatically aligns with the top of the window and I can't figure out how to seperate them..
    Does anyone know how to divorce the top of the document from the window? Or know of any other ways to work with full-page tables in pages?
    Many thanks

    Trash Pages 5.1 and use Pages 09.

  • Put a child page into a region in a parent page?  (APEX 2.2.0)

    Hi, all,
    Thanks so much for all of your help previously.
    I want to have the entire contents of child page inserted into a region of parent page. The child page uses the "Empty Template" template and has an report region that uses the "No Template" template.
    The parent page has a region containing a single div into which I want to insert the child page. If I do this using JavaScript and htmldb_Get object, inserting the result of the AJAX request into the DIV, I get what I want. I can't figure out how to preload the page into the region.
    I've tried using the URL region, but I keep getting
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1674
    ORA-12545: Connect failed because target host or object does not existwhen I enter the URL for the child page.
    I can't use UTL_HTTP.REQUEST, either.
    select utl_http.request('http://myserver/f?p=100:100:12345678901234')
    from dual;I get roughly the same error. (I copy and paste the same URL that I use for the AJAX request. I can also type that URL into a browser and get the page.)
    I can get both Google's and Oracle's Web sites this way.
    My other option is to render the entire page to a string, store it in a VARCHAR2 / CLOB, and output it to the screen. Is there a way (maybe using WWV_FLOW) to render a page to a string?
    I want to avoid using DHTML when it's not needed and I don't think that I would need it to initially load the page.
    Thanks!

    Carl,
    (Sorry about the reply gap.)
    As best as I can tell, iframes can't auto-fit their contents without JavaScript. I've also heard mixed things about iframes and accessibility. The contents of the iframe also don't inherit the CSS definitions from the parent frame. (None of those may be good enough reasons to not use iframes, but I am totally unfamiliar.)
    There are workarounds for all of those problems, but I'm just as inclined to write some PL/SQL function that generates my page for me and call that from a PL/SQL region, since the page is so simple. It might take me less time to write the PL/SQL function and PL/SQL region than it will to make the iframes look pretty.
    Thanks for the reply!
    Message was edited by:
    Don_84
    Well, that's odd. When I changed my authentication scheme from what I was using to the database authentication (the DAD one), the utl_http.request call works, as does the URL region. So the authentication is getting in the way. I wonder if there is a (elegant) way around that?
    Message was edited by:
    Don_84
    Is WWV_FLOW.SHOW documented? In a PL/SQL region, I can call
    WWV_FLOW.SHOW(P_INSTANCE => '&SESSION.', P_FLOW_ID => '100', P_FLOW_STEP_ID => '1000');where 100 is my app number and 7000 my page number, but it only works if I have no other regions. Otherwise, the page entirely fails to render.

  • Getting the page size and knowing how many pages they are in PDF file

    Hi There,
    when i do this script (
    var myPDFFile = File.openDialog(["Choose a PDF File"]); ) 
    with JS via Windows it is used for opening a new PDF file when i import this file i need to
    get the page size and how many pages they are in PDF file. but i dont know how to do it.
    please help me.

    Ask here: http://forums.adobe.com/community/indesign/indesign_scripting

  • Does my excel can be opened as a region in my jspx page.

    Hi,
    Am using jdeveloper 11.1.2.4.0.,
    My scenario  is
    I need to open my ADF Integrated Excel as a region in my jspx page.
    Does it possible? Am expecting help to achieve this.
    Kindly revert back if am not clear with the scenario.
    Regards,
    Prasad K T,
    9840021070,
    [email protected]

    Do you use adf security?
    Then you create two roles one for edit, one for the other user and use el on the button to check the rule of the logged in user.
    Read http://www.oracle.com/technetwork/issue-archive/2012/12-jan/o12adf-1364748.html for more info.
    Timo

  • What's the best way to save an 8.5 x 11 image for use as a page background in a PDF?

    What's the best way to save an 8.5 x 11 image for use as a page background in a PDF? My goal is to have a relatively small final .pdf file size that includes numerous pages with full 8.5 x 11 images as backgrounds in the document. If I save at 8.5 x 11 and 72dpi (example), the image is not 8.5 x 11, and the quality is not good enough. I need help with size, dpi, and file format to save as before I place it in InDesign and then save as a .pdf.
    Thanks,
    Jim

    Do exactly what I said then.  Create the InDesign document of the required dimension, and chose whether it will be high quality print, or Interactive PDF.  It really doesn't mater what format you bring the image into that document.  It can be JPG, PNG, but I usually use native Photoshop PSD.  The image does have to be of high enough resolution, but it can be many times bigger than iis required for the final export.  (InDesign does not import the image, but rather references it on your hard drive.)
    When you have placed your text and finished your page, then export it to PDF, but go through the tabs chosing suitable settings.  If the image needs to be downsized, InDesign will do that at this stage while building the PDF.
    If you can tell us how this presentation will be made (Projector, overhead projector, printed page etc. or just emailed to the end users) we can help you more with the final output settings. 

Maybe you are looking for

  • Transportable tablespace

    hi all i am new to oracle i want to export in oracle 10g. transportable tbs. when i execute expdp cmd. it give me error cmd>expdp scott@orcl/tiger directory=data_load dumpfile=emp.dmp transport_tablespace=users. in documentation i read transport_data

  • CD/DVD Optical Drive - Portege Laptop R700-S1310 - Need help.

    Recently, my Portege R700S1310 has given me problems regarding it's DVD/CD RW drive.  I wanted to change it out, and did all the screw removals, etc.  Once I removed the screws, I tried to remove the drive and pulled it out of the location.  Unfortun

  • Quicksilver G4 keeps crashing back to logon screen

    I have a Quicksilver G4 souped up (long ago) to dual 1.3 GHz processors, 1.2MB RAM, running 10.4.8. No recent problems, no recent updates or new applications/peripherals. All of a sudden, the thing crashes back to the logon screen every time I try to

  • ITunes installation stalls and won't finish

    When trying to install the latest iTunes it stalls about 4 bars from the end, and I can't say what it is stalling on because the Status of the install is blank. I have done everything to delete all of iTunes/Quicktime/Bonjour/etc and the program and

  • Play Queue Starting Over After The First 5 Songs

    I've been having this issue since using Spotify connect  where I'll take a playlist with about 100 songs on it, shuffle it, then after it plays about the first 5 it starts over again at the first one it shuffled. This only ever happens on my andriod