How to open navigate page containing iframe from the iframe context

Hi,
I am using jdev version 11.1.1.6.0.
I have iframe in that i have given source as a url of page. On that page load of iframe page i want to navigate the parent page of iframe to the other page i.e. replace original parent page.
how can I acheive that.
When generally I use following method it redirects to that page.
with url like /faces/oracle/webcenter/portalapp/pages/common/temp.jspx
    public void navigateToUrl(String url) {
        //Redirect to Page with givn url string     
        FacesContext fctx = FacesContext.getCurrentInstance();
        ViewHandler vh = fctx.getApplication().getViewHandler();
        UIViewRoot viewToRender = vh.createView(fctx, url);
        fctx.setViewRoot(viewToRender);
        fctx.renderResponse();
    }but in the page load of fragment page its not redirecting parent page or page in the fragment also .
So what is work around to naviagate parent pages.
Any help is appriciated.

Hi,
this here doesn't seem to make sense to me:
I have iframe in that i have given source as a url of page. On that page load of iframe page i want to navigate the parent page of iframe to the other page i.e. replace original parent page.
So you load a page in an iFrame and on load of this page you want it to replace th eparent page in which it loads. So why don't you directly navigate to that page?
Frank

Similar Messages

  • How can open a html, pdf files from the server (c:\foldername\filename)

    Hi all,
    I am developing an application. in this app i have to implement RMI.
    My problem is this, How can a client open a files from the server.
    all the html, pdf files are stored in the server's directory like C:\audit\filename.
    There is a folder on the server's C directory which contains all the html , pdf files.
    please tell me how can a client open a file from the server using RMI.
    Please send me the solution as soon as possible.
    Thanks & Regards
    Bhavishya

    That's doing it the hard way. Why not use HTTP or FTP?

  • How to open a selected text link from the keyboard

    I'd like to be able to search for some text on a screen, and then open the link that it connects to. The catch is that I want to do so via the keyboard, i.e. without moving the mouse. It seems there should be a way to do this. I've tried every combination of <meta-key> + Return, and every combination of <meta-key> + Down Arrow I can think of, since that seems like a natural place to hide such a shortcut, but to no avail. Anyone know how to do this?

    select link =shift+arrow then=>the key next to start and besides cnrtl!

  • How about having iOS Pages load fonts from the cloud?

    As a designer, Pages for iOS has lost almost all of it's funtionality without the ability to sync or save fonts from my Mac to my iPad. Of course, fonts have always been an issue when moving from one machine to another, but it seems like a logical feature of iCloud in the future. Anyone know of a work-around? Has anyone used Google Docs and Google Fonts?

    You are using the same account on both devices I assume.
    Have you tried turning document and data syncing off and on again on the iPad.

  • How to open new form and exit from the calling form on dual/multi language?

    using form 10g 10.1.2.0.2.
    i have dual language application 1 english & 1 arabic and i created forms identically each respectedly to call and switch every forms when user choose any language it uses.
    say im in currently in english. how we can call the arabic module and exit totally in english module , vice versa?
    also the form system messages. how we can switch it between two language?

    NEW_FORM() will totally replace the calling module.
    Francois

  • "my home page only start from the tabs bar I don't see the top of the homepage

    I have a problem loading my Home page I don't see the top of the home page as the home page only starts from the tab bar I don't see the backward and forward arrows or the menu please tell me how to reload FireFox so that the full home page loads.
    == This happened ==
    Every time Firefox opened
    == Home page only start from the tabs bar I want to see the top part of the home page

    Press ALT or F10 in your keyboard to make the Menu Bar temporarily visible. If you want it to be permanently visible, go into ''View > Toolbars > Menu Bar'', or right-click the Navigation Toolbar (the Reload button, for example) and select ''Menu Bar''.
    If this doesn't help, right-click the navigation toolbar, select ''Customize...'' and click ''Restore Default Set''. If it doesn't appear right away, try pressing ALT or F10. You can go into ''View > Toolbars > Menu Bar'' to make it permanently visible, or right-click the Navigation Toolbar and select ''Menu Bar''.
    If none of this helps, you may be having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Try disabling all add-ons (just to check), to see if Firefox goes back to normal.

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=&gt;blk,p_attribute_name=&gt;'A_ID');
    if v_id &gt; 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • How to open web pages from japplet??

    Hi
    Does anybody know how to open web pages from java japplet??
    Any help is apreciated!
    zick

    the getAppletContext() method of the Applet class will get you an AppletContext, with which you can call the ShowDocument(URL url) or ShowDocument(URL url, String target) method...
    check it out at http://java.sun.com/j2se/1.4/docs/api/java/applet/AppletContext.html
    have a good one :)
    Jay

  • Firefox 21.0 crashes I attempt to open a page containing video

    When ever I open any page containing a video, such as any youtube page my browser immediately closes and presents me with a crash report I believe this started happening after a firefox or adobe update a few weeks ago. The problem continues when Im in safe mode and Ive tried many suggested fixes including updating flash, reinstalling firefox, disabling hardware acceleration, checking for conflicting realplayer, editing my the flash cfg file, and so on but non of those had any effect and It's sad cause I know from looking though these forums and elsewhere that others are having the exact same problem and these solution aren't working for anyone.
    I couldn't find any answers to the problem so I reverted to firefox 20.1 decided to wait for next update, as there seems to be a flash update a couple weeks. Somehow I ended up back on FF21.0 and so Im here again asking the same question before I re-revert. So here are the details again.
    Im Post my reports and spec like this because non of these options; "automatically" "try these manual steps" or "Show details" work for me in my outdated IE which is the only working browser I have atm. The first report shows results with addons enabled and all my usual settings the second show results with in safe mode. As you can see the two are the same for the most part
    The report: With addons enabled
    AdapterDeviceID: 0x6719
    AdapterVendorID: 0x1002
    Add-ons: yesscript%40userstyles.org:1.9,optout%40google.com:1.5,foxyproxy%40eric.h.jung:4.2,adblockpopups%40jessehakanen.net:0.7,%7B73a6fe31-595d-460b-a920-fcc0f8843232%7D:2.6.6.2,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:21.0
    AvailablePageFile: 4682809344
    AvailablePhysicalMemory: 1420525568
    AvailableVirtualMemory: 3792789504
    BuildID: 20130511120803
    CrashTime: 1370577662
    EMCheckCompatibility: true
    Email:
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1369263628
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x6719, AdapterSubsysID: 24611462, AdapterDriverVersion: 9.12.0.0
    D2D? D2D+ DWrite? DWrite+ D3D10 Layers? D3D10 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 1109
    StartupTime: 1370577654
    SystemMemoryUsePercentage: 62
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: https://plus.google.com/u/0/_/notifications/frame?origin=http%3A%2F%2Fwww.youtube.com&source=yt&hl=en-US&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.YwZcwvhQD7M.O%2Fm%3D__features__%2Fam%3DIA%2Frt%3Dj%2Fd%3D1%2Frs%3DAItRSTNqkRhMtkpSA0AbmH0iColYw_JJwg#pid=36&rpctoken=387582488&_methods=setNotificationWidgetSize%2CsetNotificationWidgetHeight%2CsetNotificationText%2ChideNotificationWidget%2CopenSharebox%2ConError%2C_ready%2C_close%2C_open%2C_resizeMe%2C_renderstart&id=I1_1370577662087&parent=http%3A%2F%2Fwww.youtube.com
    Vendor: Mozilla
    Version: 21.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.
    (Im Post my reports and spec like this because non of these options; "automatically" "try these manual steps" or "Show details" work for me in my outdated IE which is the only working browser I have atm)
    AdapterDeviceID: 0x6719
    AdapterVendorID: 0x1002
    AvailablePageFile: 4607332352
    AvailablePhysicalMemory: 1334870016
    AvailableVirtualMemory: 3936632832
    BuildID: 20130511120803
    CrashTime: 1370580940
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1369263628
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x6719, AdapterSubsysID: 24611462, AdapterDriverVersion: 9.12.0.0
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 290
    StartupTime: 1370580845
    SystemMemoryUsePercentage: 64
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: https://www.youtube.com/watch?v=saKv2djbQ5s
    Vendor: Mozilla
    Version: 21.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.
    My specs:
    Firefox ver. 21.0
    Flashplayer 11.7.700.202
    OS Windows 7 Professional (x64)
    Version 6.1.7601 Service Pack 1 Build 7601
    Mobo BIOSTAR Group / TZ77XE3
    System Type x64-based PC
    Processor Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz, 3401 Mhz, 4 Core(s), 4 Logical Processor(s)
    BIOS Version/Date American Megatrends Inc. 4.6.5, 4/19/2012
    SMBIOS Version 2.7
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume1
    Hardware Abstraction Layer Version = "6.1.7601.17514"
    Installed Physical Memory (RAM) 8.00 GB
    Total Physical Memory 3.48 GB
    Available Physical Memory 1.41 GB
    Total Virtual Memory 6.96 GB
    Available Virtual Memory 4.46 GB
    Page File Space 3.48 GB

    You probably have not seen anyone reporting the exact same problem as you. All three crash reports have the same crash signature and as currently ranked 67 it is not the commonest of reasons for a crash.
    I hope you enter your email contact information when reporting crashes. I note you see this crash when using videos, others may possibly see this crash in other circumstances.
    You have already tried the obvious, attempts at a fix so it is now down to wait and see, maybe developers working on the bug will report something or fix it.
    Did you try my suggestion of installing portable ESR ?
    For forum cross referencing purposes
    * Crash Reports for Crash IDs <br />bp-71697f5d-41d4-48ae-9db9-3e6302130607<br /> bp-6e1347bc-153f-433a-9c35-a5f022130607<br /> bp-92a533a2-9e09-4c1e-8df7-deb4c2130607
    *(all three) Crash Signature: EnumSoftwareMFTs(_GUID const&, unsigned int, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, IMFActivate***, unsigned int*)
    * Related bug 858667 NEW crash in mozilla::wmf::MFTEnumEx @ EnumSoftwareMFTs
    *I note this was first seen in Fx21 and is 100% Windows 7
    <br />

  • How to open a page  and closing source page in jdev 10.1.3.3

    how to open a page and closing source page in jdev 10.1.3.3.
    for example.
    From page 'A' , we are opening a page 'B' and closing the page 'A'. how this can achived.Please let me know

    Your question is totally not clear?
    What page? a JSF page? A code editor in JDeveloper?

  • How to submit a bug report for OSB? - restore fails if number of items per page is changed from the default of 30

    In the OSB web gui, one of my users found that if the number of items per page is changed from the default of 30, the restore of the file will fail.  He tested this using recent versions of Firefox and IE.  We have verified this to also be the case using Chrome.
    In a directory containing over 100,000 files, moving 30 at a time to find the one to be restored is a very frustrating user experience.
    How do I file a bug report for this issue?  Is there a workaround for this bug to enable my users to more easily find the file to restore without being restricted to the default of 30 items per page?

    Yes there is a bug in the webtool in the current release. You can use the commandline obtool to do the restore, that is much faster and works fine.
    Thanks
    Rich

  • How can I use Pages 4.3 (from Retail pack) template on Pages 5.2 (from Mac App Store)?

    This is a new machine running on Mavericks bought last year since my old Mac had a hard-drive failure. Installed Pages (part of iWork '09 package), updated to Pages 5.0 from the Mac App Store and no issues. However, now I need to use some of the old Pages template (San Fancisco Letter to be specific) and the new Pages dosn't have that.
    So I had to extract the San Fancisco template from Pages '09 and tried installing under 'My Template' on Pages 5.3. But evertime I'm getting an error while installing. That's when I realised after going through the discussions here, that I can't install a Pages '09 template on Pages 5.3.
    So my question is how to use a Pages 4.0 template on Pages 5.3? Is it possible to install Pages 4.3 while Pages 5.2 is still installed? Is there a workaround?
    Note: I don't need Pages 4.3 but would like to use some of the templates from there, working on Pages 5.2.
    Thanks in advance - Sid

    Due to the huge number of missing features in v5.2 that were functional in Pages ’09 v4.3, many of the older version templates expect features/functionality that simply do not exist in v5.2. You should realize that Pages v5 is a brand new application/design, and not a progressive version enhancement to Pages ’09.
    When you updated to Pages v5, that process automatically moved Pages ’09 v4.3 into /Applications/iWork '09. You can continue to use the older Pages (and associated custom templates) on Mavericks.
    I would resist removing Pages ’09 from your machine, as it is functionally superior to Pages v5.
    Templates that you save with Pages ’09 v4.3 are kept in ~/Library/Application Support/iWork/Pages/Templates/My Templates
    Templates that you save with Pages v5+ are kept in ~/Library/Containers/com.apple.iWork.Pages/Data/Library/Application Support/User Templates
    One of the things that I noticed about the original Pages v5 installation is that it transferred a small subset of My Templates from Pages ’09 into the above User Templates location. These were relative simple templates. The complicated ones did not migrate.
    Be certain to make a backup copy of any Pages ’09 template document. Once you open it in Pages v5+, it can no longer be opened in the older Pages application. Providing the template is compatible with Pages v5+, perform a File > Save as Template... to the default location.

  • Open pdf in new window from an iframe

    i have a web page with an iframe that displays pdf's chosen  from a drop down menu.
    i need to be able to make the current pdf open from the iframe into a new window.
    any ideas?
    thanks
    Larry

    heres an example.
    http://www.sixmanmagazine.com/cev test/CEV00152/CEV00152.html
    i uploaded that so you can see what i am trying to do.
    the left side is for video and the right side is the iframe.
    i want the content of the iframe that i want to display in a new window.
    Thanks for your time.
    larry

  • How to open another page on the same document in microsoft office 2008

    Hi, can you tell me how to open a page in microsoft office 2008, thanks

    Insert -> Page -> Page Break

  • How to open older version of iPhoto from an external drive. It won't let me open or upgrade to the latest version?

    How to open older version of iPhoto from an external drive. It won't let me open or upgrade to the latest version?

    With the amount of information you've provided it's impossible to offer a potential solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    what fixes have you tried?
    how is the EHD where the library is located formatted?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?
    OT

Maybe you are looking for

  • My iphone 4s and ipad 2 both with 7.0.4 update will no longer connect to wifi but non-mac lap top has no issues

    my iphone 4s and ipad2 both with 7.0.4 update will no longer connect to wifi. About three days ago the ability to connect came and went and the connection never lasted more than 10-15 minutes; it has not been able to connect since last night. I do no

  • Slider auto goes to "Off"

    I have a large HD hooked via firewire into a headless Mac Mini. Using Airport wireless, I've been able to back up 3 portables (plus the Mini itself) to this drive. However, I can no longer back up our Macbook Pro. Every time I attempt to choose the s

  • Hard/soft block in sales order

    Hi, What is hard/soft block as far as availability check in sales order. What is the config settings  for the same. regards

  • Scrolling a list in application published for iPhone

    I am creating an application in Flash CS5 which will be published for iPhone. I need to scroll a list of entries, just like we have a list of songs in iPhone. I am not able to get how to make the scrolling of the list possible. I tried using TouchEve

  • Oracle Service Bus Debugger: stepping an inexisting frame

    Hi, We are frequently getting below alert on production. The messages are not failing beucase of this. Does anybody face this error before? ..... not able to reproduce this on our test environment. <BEA-382004> <Failed to process request message for