How to load another page in a frame?

Hi!
I have a frame with a page where is a button. I need to load another page in the frame when I click the button. How can I make it on the ADF? I work on JDeveloper 10.1.3.4.

I found example. Thank you for help. Refresh works very well! This code:
    protected void refreshPage(String refreshpage) {
        FacesContext fc = FacesContext.getCurrentInstance();
        ViewHandler ViewH = fc.getApplication().getViewHandler();
        UIViewRoot UIV = ViewH.createView(fc, refreshpage);
        UIV.setViewId(refreshpage);
        fc.setViewRoot(UIV);
    refreshPage("/transfers/ClaimForm.jspx");

Similar Messages

  • Loading another page into frameset

    Hi,
    I have divided my BSP page into 3 frames. On click of a button I want to load another page into one of the frame. Could you please let me know how to do it.
    Regards,
    Ravi G

    Hi Friend,
    I have designed in a way similar to yours.
    In one frame, I have tree in which all its leaves have a link.
    Clicking a link on one frame will display the corresponding page on the other frame.
    All the pages displaying in the frame were designed separately.
    tree.do refers to the name of the controller in which this content get displayed in the left and default.do refers to the name of the controller whose content get displayed in the right in default.
    Clicking the link on the left specified in the tree will replace the default.do  content with a table named deptable.do.
    In the below code specified  zpgms1 refers to the application name and pagedivider.do refers to the name of the controller  in which the page was divided into frames.
    Tree.do page holds the codings in which tree was designed and the link attribute holds default.do page initially and clicking the link would activate the deptable page which is assigned to a variable.
    In the below code I'm replacing the content of default.do  by concatenating the default.do code with deptable.do
    <htmlb:form action = "/sap/bc/bsp/sap/zpgms1/pagedivider.do"
                          target = "_top"
                          method = "post" >
                  <htmlb:treeNode id          = "subnode2"
                                   link              = "default.do?&tag=deptable"  
                                target          = "right"
                                  image         = "@03@"
                                  text          = "Department MasterTable"/>
                               </htmlb:treeNode>
    In the defaullt.htm page specify the codings below.
    <%
      data: tag     type string,
            control type string.
      tag = request->get_form_field( 'tag' ).
      if tag is not initial.
        concatenate tag '.do'       (deptable name gets concatenated here and assigned to the src )
        into control.
      endif.
    %>
    <%
    if tag is not initial.
    %>
    <htmlb:content design = "design2003" controlRendering="sap" rtlAutoSwitch="true">
      <htmlb:document>
        <htmlb:documentHead>
          <frameset rows="75%" MARGINWIDTH="0" frameborder="0" framespacing="5" MARGINHEIGHT="0">
            <frame style="border-bottom-style:solid;border-color:#A5B1BF;border-width:1px"
             scrolling  = "auto" src="<%=control%>" name="control" target= "_top">
          </frameset> 
    With Regards,
    SHARMILA BRINDHA.M

  • How to load html page or website in flash as3

    hi
    how to load html page or web link (www.google.com)  in flash as3.
    please help me...

    Use the navigateToURL function...
    var url:String = "http://www.wherever.com";:
    var req:URLRequest = new URLRequest(url);
    navigateToURL(req);
    OR in one line...
    navugateToURL(new URLRequest("http://www.wherever.com"));

  • I keep having to restart my computer. It say firefox is running in the background but I cannot load another page

    I keep getting the message that Firefox is running in the background and I cannot load another page. I have to restart my computer to get Firefox back to operating normally. I have everything closed down as far as I can tell. But when I click on the Icon it will not start another page. It just keeps telling me to shut down all browser windows and that Firefox is running in the background. I even go to ctrl/alt/delete and look at the tasks running. Nothing! It is happening a lot more often now and I hate to use Internet Explorer. I have depended a lot more on Mozilla in the past few years now and I like it. This is driving me nuts. Please help. Thank You

    Did you check the Processes tab in the Task Manager?
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • How to populate another page item based on cascading select lists?

    Oracle 10gXE
    APEX 3.2
    I've created cascading select lists based on the examples (using Javascript and AJAX) that i've seen on this forum. Thanks for help on that!
    Now that I have these LOV's being populated without needing to submit the page, how do I take the value that is presently in each LOV and concatenate them together to populate another page item? I'm trying to build the URL string that will execute an Oracle Report once the user clicks a button.
    Previously, when I had multiple Select Lists with a submit, the URL was being put together using an After Submit Computation that would set the value for an item (P26_REPORT_URL) on the page. Notice that a report parameter (i.e. parameter name and Select List value) is only included if the user has provided a value. The page item that holds these values is then referenced by a button for URL redirect. The URL Target for the button currently is: javascript:popupURL('&P26_REPORT_URL.'), but will not work at the moment because P26_REPORT_URL page item is not changing based on what is selected in the LOVs. Since I'm not submitting anything (do I need to?), how do I put together the values needed?
    Computation for P26_REPORT_URL:
    DECLARE
    l_param VARCHAR2(2000);
    BEGIN
    l_param := '&REPORTS_URL.&report=&P26_RPT_VIEW..rdf&desformat=&P26_DESFORMAT.&destype=cache';
    IF REPLACE(:P26_OLO_CODE,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_olo_code=&P26_OLO_CODE.';
    END IF;
    IF REPLACE(:P26_BEG_DATE,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_start_dt=&P26_BEG_DATE.';
    END IF;
    IF REPLACE(:P26_END_DATE,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_end_dt=&P26_END_DATE.';
    END IF;
    IF REPLACE(:P26_ORG_CODE_2,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_org_code=&P26_ORG_CODE_2.';
    END IF;
    IF REPLACE(:P26_FLAIR_ORG_2,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_flair_org_code=&P26_FLAIR_ORG_2.';
    END IF;
    IF REPLACE(:P26_BUDGET_ENTITY_2,'%'||'null%',NULL) IS NOT NULL THEN
    l_param := l_param||'&p_agy_code=&P26_BUDGET_ENTITY_2.';
    END IF;
    RETURN l_param;
    END;

    Andy,
    This is a great suggestion! After I posted, I started looking at a Javascript solution and figured it's probably what I had to do.
    However, now the cascading select list no longer working for some reason after I added the function to concatenate the item values. When I remove the showReport() function the select list works again.
    Here is what I have in the HTML Header portion of the page:
    <script language="JavaScript" type="text/javascript">
    function popupURL (url) {
      w = open(url,"winLov","resizable=1,width=800,height=600");
      if (w.opener == null)
      w.opener = self;
      w.focus();
    function showReport()
      var l_param = '&REPORTS_URL.&report=' + $v('P26_RPT_VIEW') + '.rdf&desformat=' + $v('P26_DESFORMAT') + '&destype=cache';
      if ($v('P26_OLO_CODE' != '')
       l_param += '&p_olo_code=' + $v('P26_OLO_CODE');
      if ($v('P26_ORG_CODE_3' != '')
       l_param += '&p_org_code=' + $v('P26_ORG_CODE_3');
      popupURL(l_param);
      function get_AJAX_SELECT_XML(pThis,pSelect){  
         var l_Return = null; 
         var l_Select = $x(pSelect); 
         var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=ORG_SELECT_LIST',0); 
         get.add('TEMPORARY_ITEM',pThis.value); 
         gReturn = get.get('XML'); 
         if(gReturn && l_Select){ 
             var l_Count = gReturn.getElementsByTagName("option").length; 
             l_Select.length = 0;
             for(var i=0;i<l_Count;i++){ 
                 var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) { 
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{ 
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>

  • How to load Html page in Flex 4 application

    Hi All,
              I am able to load html page in flex 3 application but i am unable to load in flex 4 application.
    How can i do it.
    Can any help me regarding this.
    Thanks in Advance
    Raghu.

    This may help - http://www.deitte.com/archives/2006/08/finally_updated.htm
    Thanks and Best regards,
    Pallavi Joshi | [email protected] | www.infocepts.com

  • [S] How to load another keymap in initramfs with busybox (loadkmap?)?

    Loading programmers dvorak in initramfs with busybox.
    Solution:
    Download the keyboard map. Other keyboard maps you can usually find in "/usr/share/kbd/keymaps/"
    wget https://raw.githubusercontent.com/jiangmiao/dvp/master/dvp.map
    Now convert that map to the binary format that can be used with `loadkmap`. Make sure you run it with privileges, otherwise you'll get the "Couldn't get a file descriptor referring to the console" error
    sudo loadkeys -b dvp.map > dvp.bmap
    Now you can load that map in initramfs using `loadkmap`. I have a custom initramfs and init and here is the excerpt from it
    #!/usr/bin/ash
    echo "Starting the init script"
    #mount things needed by this script
    mount -t proc proc /proc
    mount -t sysfs sysfs /sys
    # and so on
    echo "creating the symlinks to busybox"
    /bin/busybox --install -s
    echo "loading programmers dvorak"
    loadkmap < dvp.bmap
    Problem
    I have a custom initramfs with Busybox in it. I want to load another keymap in there. Busybox has `loadkmap` utility, unfortunately it expects a binary file, so .map files don't fit in there. The goal is to load programmer's dvorak in busybox, but the problem is generic, because any ANSI .map format will not work with `loadkmap`.
    The map for dvp is here: https://github.com/jiangmiao/dvp
    Here it was talked about, but unfortunately the patch link is dead: http://mstempin.free.fr/index.php?2005/ … ry-keymaps
    How to load a keymap in initramfs with busybox?
    FTR, here is the quote from that blog post
    Unfortunately, This is not a trivial task in Busybox, as it uses a special binary keymap file format for specifying the keymap to use.
    The standard Linux way of handling keymaps is using the kbd utility package. This package contains most of the worldwide keyboard definitions in a keymap format. The two most usefull commands are the loadkeys and dumpkeys, which respectively loads an ASCII keymap file into the kernel's internal translation table and dumps this table to the standard output.
    Unfortunately, the keymaps file format (see Linux manual (5) for keymaps) is difficult to parse ,as it requires a full lex/yacc parser to handle it :-(.
    However, such a parser is included into loadkeys... And this utility also provides a -m option that generates a C-style output of the file...
    After studying Busybox's binary keymap format in details, it appears to be no more than just a file dump of all key translation tables for each state (ie. plain, shifted, controlled, etc.), preceeded by a binary map of translation tables.
    So, I decided to write a patch to the kbd package to add a -b option that provides a binary keymap dump capability to loadkeys. Here it is!
    Last edited by SteveSapolsky (2014-12-19 12:39:13)

    progandy wrote:
    In archlinux loadkeys from core/kbd should allow you to generate a binary keymap.
    loadkeys -b /your/key.map > key.bmap
    Thank you. I updated my post and added the solution.

  • How to split one page into different frames in ADF?

    Hi,
    Can any one please guide me how to split a jspx into different frames.
    i.e., left frame contains <af:panelSideBar> which contains multiple <af:commandMenuItem> s. And whenver we click on the one <af:commandMenuItem>, it has to show the corresponing page inside center frame in this page itself. Is it possible in ADF? Which component we need to use?
    Can anyone guide me on this?
    Thanks in advance,
    Regards,
    Suresh Kethireddy

    You can use a combination of the ADF Faces 10.1.3 components like:
    af:panelPage
    af:panelSideBar
    af:panelHorizontal
    af:panelGroup
    to organize the screen layout, but it is not the interactive splitter that the 11g product provides.
    You can all all the 10.1.3 ADF Faces Components here:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/imageIndex.html

  • How to load another internet browser (Curve 8330m)

    How do I go about loading another internet browser?  I downloaded the Opera Mini and tried to make it as the default browser but couldn't seem to get it to work properly.
    Can anyone point me to some documentation (nothing seems to be in the Blackberry Technical Solutions Center) or give me some step-by-step instructions on how to do this?

    LoboFan wrote:
    I do realize that.
    How can I get the browser to work?  Are there any steps I need to follow to use it instead of the Blackberry default?
    OK, sorry., I guess I misunderstood your initial question.
    So what is NOT working.. you've installed Opera Mini and you open to use it.. what happens?
    Details, please.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to load a page or page layout  when click on hyperlink using jsf

    Hi,
    I created a hyperlink using a4j:commandlink, when i click on this link, i have to load a page. How to include the page using, <ui:include>, when i click on the hyperlink.
    Please help me in this issue

    Enclose your <ui:include> component in a <h:panelGrid> or a <f:subView> as said above, and use rendered attribute that is set to false.
    When you click on the link, set the rendered attribute of panelGrid or subView to true. Now use reRendered attribute of a4j:commandLink to rerender the panelGrid or subView.
    Also check this regarding RoseIndia .

  • How to show new page in html frame in JEditorPane

    In JEditorPane when hyperlink is clicked
    <br>Home <br><br>
    "target" ignored, new page opening without frames, what have I to do?
    I use hyperlink listener like this:
    void jEditorPane1_hyperlinkUpdate(HyperlinkEvent e)
    try
    jEditorPane1.setPage(e.getURL());
    m_urlStack.push(m_current);
    m_current = e.getURL();
    catch(Exception e1)
    JOptionPane.showMessageDialog(this, "Page not found.");

    As per my understanding, You want to just redesign your list form. You can achieve the same using SPD2010 or you can use jQuery also if you don't have rights for SPD customization.
    Create
    a custom list form using SharePoint Designer
    SharePoint
    form: present fields side-by-side
    Thanks.

  • How to load jspx page in a ADF popup componenet

    Hi,
    I am using the jdeveloper11g ,Oracle ADF component's .I met with a problem while i am trying to load the page In ADFPOPUP component. .while i am able to load the component's in the ADFPOPUP why can't i Load jspx page in ADFPopup and have my application running in ADFPOPUP.If anybody able to give me the solution for my problem i will be more pleased and thankful to them
    from
    satyatheja kunchey Employer prapansol

    Hi,
    you can load a JSPX file in a dialog, not a popup. A popup shows content from the same JSPX file (you may want to use subviews to add external content, but this is not quite the same as you are asking for)
    Frank

  • HOW TO CALL ANOTHER PAGE USING PL/SQL PDK?

    Hi,
    I am using pl/sql pdk to create portlets. When I need to call
    another page I am using wwpob_page.show(p_pageid) but instead it
    displays File Download wizard.
    Anyone knows workaroud for this?
    Are there any other ways to call other pages with portlets from
    pl/sql portlets?
    Thank you,
    ya

    Hello Yuri
    If you want to call any component of an application from PL/SQL
    you have to take a look to the manage of the component and then
    to Call Interface (Show), There you can see the way to call the
    component, but if you want to call a Page the way I found to do
    it, even thought it is not the best, was put an url like
    this /pls/portal30/url/page/PAGE_NAME on the link.
    I hope this could help you, if you dont understand please let me
    know and I'll give you a hand
    Ana Maria

  • 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 load jsp page in Frame?

    hi
    I have tried to make an Application which is a very simple Messenger made by java.awt.Frame
    and had problem to load/open jsp page.
    Is there any way to load/open jsp page in Frame When an event occured?
    It makes me crasy these days.
    Please Help me.
    Thank you and have a nice day!
    Sorry about my English^^

    I think we need more info than that.
    Why do u want to open JSP in a Frame? do u want to open it with all the JSP code still there (for editing), or do u just want to display the HTML which is created after executing the JSP.
    You will need Tomcat or JRun or another servlet/JSP engine to execute a JSP. do u have it installed? and the fact that u have win2000 and sql server 2000 doesnt really shed any light on your problem and what u r trying to acheive.
    Post more info and hopefully we'll be able to help u better.

Maybe you are looking for

  • Query to fetch vendor number with whom this item was last purchased

    Hi All, We have a requirement to fetch the vendor number for an item with whom the item was last purchased. We need to derive this by looking at the open Purchase Order or the Material Transactions for the transaction type of 'PO Receipt' whichever i

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns.

  • Export comments/notes doesn't work anymore!

    In the new version coming with OS X Maverick yesterday the export isn't working like it should. When you try to export a PDF and check "Include presenter notes" those notes will NOT be exported. This worked perfect in the last version. I really need

  • 8130 Calendar sync problems with Outlook 2007

    I have Sprint 8130...and all is okay...until today.  I am used to Active sync (from my old HTC Mogul), not RIM software.  When I sync'd a week ago, the first time, all was great (accept for the confusion I still have about where the inet explorer fav

  • Analytic Functions in Pro*C

    Hi. Does anyone know if you can have analytic functions in Pro*C? I tried to compile this select statement and I get this error: EXEC SQL DECLARE officer_cursor CURSOR FOR SELECT opd, nvl(rank1,0), nvl(rank2,0), nvl(rank3,0), nvl(rank4,0) FROM (SELEC