Opening another Page in Modal Window

How to open another page in a modal window by using JQuery. Also I need to pass few parameters to the other page.
Any idea?
Thanks
Deb

The definition of a modal window is a single window opened on top of other windows, so it gets the attention and is acted upon.. Like a message window asking if you want to delete all records waiting for a Yes or No answer..
Thank you,
Tony Miller
Webster, TX
A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
"I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

Similar Messages

  • BSP code to open new page in new window after button click

    Hi expert,
    I have a requirement to write a BSP code to open new page in new window after button click. I have done the same for opening in same window but not for opening in new window.
    Can you please help me out with the code in which the page opens in new window and the menubar & Addressbar is displayed in hide mode.

    Hi,
    To add more with Anubhav...
                              onClientClick = "javascript:window.open( 'pop.htm' ) "
    You can create a pop.htm page, and call the same in another page using the above code.
    Refer standard BSP examples, SBSPEXT_HTMLB, SBSPEXT_PHTMLB, SBSPEXT_XHTMLB. You can run the default.htm pages and see what way you want to design your BSP.
    Thanks,
    Sreekanth

  • RH 7: In a CHM, how can I open an independent, non-modal window?

    Hi all,
    Using RH7.
    From within a CHM page, how can I open an independent, non-modal window?
    From within a topic I want to display a large picture by clicking an icon. The picture should appear in an independent, non-modal window that the reader can grab on its caption bar and so move the window  around. Thus, the reader can move the picture window to one side of the monitor, for example, and then use it as a reference, while continuing to read the topic on the other side of the monitor.
    Is this possible in RH7? If so, which RH feature would I use to do this?
    TIA
       avi

    Hi there
    I'm guessing you want to simply open a new browser window without any browser controls, right? In this case, you will need to use JavaScript to do it.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • JQuery modal form - Open another page

    Hi ,
    I have implemented a Jquery modal form in my application.
    I have a region and in the header I have the following code :
    <div id="transaction" title="Update transaction details" > . This is basically a form region and has around 35 items.
    I call this through the Jquery function
    $("transaction").dialog('open'); This works well for me.
    Now I want to move these items to a different page.
    How can I call this page as a modal dialog form ?
    I would like to do :
    $(NEW_PAGE).dialog('open') // NEW PAGE can be an URL to the new page ?
    How I can achieve this functionality ?
    Thanks,
    Dippy

    create an html no template region:
    add a html frame into source
    <frame id ="eventreg" src="f?p=&APP_ID.:your application id:&APP_SESSION.::NO:your page id:your parametere:&your parameter value." height="100%" width="100%" frameborder="0"></iframe>
    region header section
    <div id="yourdivid">
    region footer section
    </div>
    page header add the javascript
    $(document).ready(function(){
    $("#eventRegUpd").dialog({bgiframe: true,
                               width: 775,
                                     height: 525, 
                                     autoOpen: false, 
                                     modal: true                                 });
    hope this will help you
    regards

  • Use hyperlink to open another page , and pass some parameters to that page

    Hi
    Thank you for reading my post.
    How i can use hyperlink to open another jsp file in a new window meanwhile pass some parameters to it.
    for example i need something like this :
    http://127.0.0.1:8080/myProj/faces/Viewmessage.jsp?messageID=10
    i can not use session bean because i must open that in a new window and use hyperlink not Action
    Thank you

    I tried the following in the equivalent of your Viewmessage (page bean):
            ExternalContext eContext = FacesContext.getCurrentInstance().getExternalContext();
            String text = "Parameters: ";
            Iterator it = eContext.getRequestParameterNames();
            Map requestParams = eContext.getRequestParameterMap();
            while (it.hasNext()) {
                String key = (String)it.next();
                String value = (String)requestParams.get(key);
                text += "; " + key + " = " + value;
            staticText1.setText(text);That works as expected when you reach that new page via a hyper link.
    The session object is also the same as in your `old' window. So be careful about synchronization!
    I hope this helps.
    -- Marco

  • Open another JSP in same window

    Hello. I am new to JSP. I have the following basic
    question:
    How do I open another JSP in the same window when a button is clicked?
    Please include code.
    Thanks in advance,
    Alexander.

    There is an easier way to do this
    that doesnt limit you to a form submit
    button. Remember that jsp is just a
    way of getting a servlet to send dynamic
    html back to a browser as a response.
    So in that case, anything you include
    on the .jsp page that's not surrounded by
    the declaration, expression, directive or
    scriplet tag will be will be included in the
    response sent. This includes regular html
    and also javascript. So why not use js!
    The following code lets you open any type
    of file (including .jsp) in any sort of window
    that you want:
    function newWindow (jspPage){
    popup=window.open(jspPage,"","toolbar=yes,menubar=no,width=600,height=400,resizable=yes,scrollbars=yes")
    Then on your page you put a link such as:
    Click here for new window
    This is set up to work with a link but you can also have
    it work with a button.(ignore the link, the jsp forum server
    does that automatically)

  • How do I open a page in new window using af:commandLink?

    Hi,
    I have a requirement where I need to open the page in a new window on clicking the af:commandLink.
    I could use af:goLink, but I cannot as I have to invoke the URL using http POST method. If I use af:goLink, all the parameters will be displayed in the URL. I do not want that.
    I have the below code for the commandLink:
    <af:commandLink text="Open new window" id="cl199bk"
    styleClass="AFRighColLinkText"
    action="dialog:openNewWindow"
    useWindow="true" windowHeight="400"
    windowWidth="800" immediate="true"/>
    When I click the commandLink, the page gets opened but in the same window. I have the below controlflow-case in my taskflow:
    <control-flow-case id="__71">
    <from-outcome id="__133">dialog:openNewWindow</from-outcome>
    <to-activity-id id="__72">openNewWindow</to-activity-id>
    </control-flow-case>
    Please let me know what to do to have the page opened in new window/tab.
    Thanks in advance!

    Hi Frank,
    I tried that too and the page always opened in the same page even with dialog:action set and useWindow set to true. I had the navigation rule in adfc-config as well.
    I got it done using the url-view activity.
    I have created a new bounded task flow with the url-view activity as the default activity. I called this new task flow from the actionListener bean method on commandLink. Set the new task flow to url-invoke-allowed.
    I have my parameters set in the url-view activity. With this the parameters are not shown in the URL.
    That did the trick for me.
    Thanks.

  • Open Dynamic Page in New Window after Submission

    I need to open a "success" dynamic page in a new window when redirected from a form in Portal 9.0.4.1. The go('<url>'); method does not appear to allow opening the page in a new window. Is there a way to do this? Thanks, in advance.

    on the 'Submit' onclick event add some JavaScript code:
    this.form.target = '_blank';

  • Issue: Opening the page in new window causing issues.

    Hi All,
    I have a page where in there are many PPR events implemented.
    Apart from this i have content container region where in there are help links each of which is OALinkBean .
    All these help links point to the same OAF page with different parameters.
    I wanted to open these help links in different windows (as these would display some data to the user ie not transaction based)
    for which i have set the destination property of the link bean saying :
    OA.jsp?page=/oracle/apps/pos/reqform/mdm/webui/SARSMDMDisplayPG&RULE_ID={@RuleId}&retainAM=Y
    and target frame to _blank to get it opened in new window.
    Now,
    when the page loads, it gets rendered fine along with the content container with help links in it.
    When i click on the link, it will open the correspoding OAF page in new window. - fine upto this
    On the main page, when i do any form submit, it is throwing me server side validation like "attribute xyz required in xyzVO".
    This happens when ever i click on the link to open a new window.
    Not sure if something needs to be handled to avoid doing this server side validations.
    I have disabled server side validations too on the link bean.
    I do have lot of events getting fired on the main page for the business requirements.
    Please do let me know a solution to the same.
    Thanks,
    Sushma.

    Hi All.. I am also facing the similar issue... actually the second page is VO or EO has no relation with the mail PAGE.. Second page is completely independent... but issue is that whenever i do any operation in first page after open the 2nd page the VO of the main page is geting quried without any condition.... i have a search screen and after conducting search if i try to open the second page and do any operation in the main page the whole value from vo will be shown in the page...... that is causing multiple issues....
    Plzz help as it is very urgent.....

  • 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

  • Opening OA page in new window with parameters

    Hi all,
    Hi need to open a new page in a new window with some parameters to be passed to that page.
    Here is the code i have written.
    But i am not sure how to pass parameter in java script string
    String userid = new Integer(pageContext.getUserId()).toString();
    OAButtonBean go = (OAButtonBean) webBean.findChildRecursive("go");
    String url1 = "javascript:openWindow(top,'OA.jsp?page=/aos/oracle/apps/per/payslip/webui/AGSBPaySlipPG&userid={@userid}, null, {width:750, height:550},false, null, null);void(0);";
    go.setDestination(url1);
    Thanks,
    Devang

    hi mani,
    I didn't got wat u meant by binding the attribute.
    I tried another way.
    I had a OAButtonBean GO
    I have 2 messagechoices one for month and another for year
    So in page A in month it shows Jan in starting (till Dec) and in year it shows 2006 as per the picklist view attribute. Also I have attached the VO and view attribute for both the messagechoices.
    Now in the setDestination of the GO button i have url of my pageB with retainAM=Y and target frame as _blank.
    So i select "Oct" from messageChoice and year as 2006 and click GO but still when it goes to pageB and when i try System.out.println(<the view object attribute value>)
    i get "Jan" instead of "Oct". Below is the code in pageB i am using to get the value of the month from VO
    MonthVOImpl monthVO = (MonthVOImpl)pslip.getMonthVO();
    //pslip is AM object
    RowSetIterator monthrowsetiterator = monthVO.findRowSetIterator("monthvo");
    if (monthrowsetiterator == null)
    monthrowsetiterator = monthVO.createRowSetIterator("monthvo");
    // monthrowsetiterator.reset(); I NEED TO COMMENT THIS OUT - RIGHT ??
    MonthVORowImpl monthrow = (MonthVORowImpl)monthrowsetiterator.next();
    String month = monthrow.getMonth().toString();
    System.out.println(month);
    So how do i resolve this issue. I thought that retaining the AM will take care of the value which i am selecting in the messagechoice in pageA.
    Any ideaz??
    Thanks,
    Devang

  • When opening new page, an extra window says "problem loading page"

    Opening the Firefox browser causes a second tab at the bottom to pop up that reads "problem loading page"...the pages I want to view open up fine, on all websites, I just get an extra annoying tab with that message...if I click on that tab, a small window pops up in the upper left hand corner of the screen that has the error message. I am using FF 3.6. This just started happening recently...possibly after my las FF upgrade.

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Opening OA page in new window using Image Bean

    Hi All,
    We have a requirement to open a new window in one of our application. It is working when I use a link but I am not able to achieve the same functionality with an image bean. Is it possible to achieve this using an image bean?
    Thanks in advance,
    Sundeep

    Sundeep,
    If you wanna use imagebean, you would have to attach action using bound values API and open secondary window in OAF.Here is the same ple code:
    OAImageBean btn= (OAImageBean)webBean.findChildRecursive("<item id of image icon bean>");
    //page url
    String page1 = "/xx/oracle/apps/XX/webui/XXPg&retainAM=Y";
    String destURL = APPS_HTML_DIRECTORY + OAWebBeanConstants.APPLICATION_JSP + "?"+ OAWebBeanConstants.JRAD_PAGE_URL_CONSTANT+ "=" + page1;
    OABoundValueEmbedURL jsBound = new OABoundValueEmbedURL(btn,"openWindow(self, '", destURL, "' , 'longTipWin', {width:"+900+", height:"+500+"}, true); return false;");
    btn.setAttributeValue(oracle.cabo.ui.UIConstants.ON_CLICK_ATTR, jsBound);
    I received your mail, and replied the same in the mail too.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Opening Dashboard Page in New Window While Passing Prompt Values

    Hi,
    Currently it is not possible to open a dashboard page in a new window AND have the prompt values from a prior page pass to this page. I see one or the other can be accomplished but not both. Is there a way this can be acheived somehow or is there a workaround for this?

    You are correct. The "Link or Image" object does not pass the dashboard prompt values, though it allows the destination dashboard to be opened up in a window.
    Here is a workaround.
    1) Place the link in a "Guided Nav. Link" object and set the destination dashboard and desired report. With the prompt set up correctly (i.e., dashboard scope, set to PV, destination report column filtered to receive the PV), the destination report will be filtered on the prompt as desired.
    2) I noticed (and maybe this is why you wish the "new window"), there is no "return" link on the destination report. To fix this, in the destination dashboard, add a Text object to the dashboard. In the properties, paste the code below and make sure to check off "Contains HTML markup." This will produce a "Return" button on the dashboard.
    <input type="button" value="Return" onclick="history.back();">
    Now, when the user selects the prompt and clicks on the link, the prompt is passed to your second dashboard. When the user wishes to return, he/she can click on the "Return" button and return to the primary dashboard.
    HTH,

  • ExternalLink in KM  which open portal Page in new window whithout masthead.

    Hi All,
    I have a requirement to create an external link which opens in new window and the content of the window is an Page which has iviews.
    I created an external link and gave the following details.
    Target: /irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default?NavigationTarget=pcd:portal_content/com.abc.Test_Page
    Name: Test
    When I click on the external link, it opens a new portal window which has the mast head and in the content area the page is displayed.
    My requirement is : I don't want the masthead to appear and I want only the page to be displayed in the new window.
    Thanks,
    Shilpa.

    Hi Krishna,
    In the iview Property -> Launch in New Window, i have only 2 options ie
    Display in Portal content Area
    Display in New Window.
    Where do I find display in seperate portal headerless window? Is it the customised one?
    I have set Launch in New Window Property to Display in New Window. When i click on the link new window is opening which has masthed.
    Please Suggest.
    Thanks,
    Shilpa.

Maybe you are looking for

  • Figuring out podcasts in iTunes 11.1 and iOS 7.

    Like many here, I'm dismayed by some of the ways that iTunes 11.1 now handles podcasts: that appalling view of "SHOW ME EVERYTHING" in the List pane in particular. What I'm providing here are a few tips and suggestions for things that seem to be work

  • Updated to 10.9.5-Now have Numbers issue

    Just updated to OS 10.9.5, and using Numbers 3.2.2 (previously updated, and working with no problems).  After OS update, cannot open Numbers passworded doc.  Other Numbers docs open, no problem.  The passworded one does not even open the box to enter

  • What DVD-R speed for '011 Super Drive

    What DVD-R should I use for my 2011 MacBook Pro super drive 8X or is it capable of 16S?

  • TS3451 Can't record keeps posting "DISK TO SLOW"

    Trying to record vocals in garage band, and Can't be as soon as I hit the record button posting appears saying DISK TOO SLOW. and then ask me to continue and there no recording.

  • Attaching photos to text

    Does the Iphone 3G not have the capability to attach a photo to a text message?