Need to open separate Browser window

hi all, I want to display some data in a separate browser window instead of using popupManager. How do i do that. Also i need to pass parameter to that window, based on that parameter, i ll call the service and get the required data and display that in the datagrid.

to open a seperate window, you'd have to use the navigateToURL() function
to pass data to that window, you'd most likely need something like a GET method, if it's alot of data then you'd probably need to create a temporary file and pass a file reference via the GET method.
or you could look into swf-swf communication

Similar Messages

  • Why is Firefox opening a separate browser window for each link instead of a new tab in the current browser window?

    Suddenly firefox has started opening a new, separate browser window for every link and thing I open. It used to just open a new tab in the current browser. I must have closed down 15 browsers when trying to get back to a previous web page - the back button doesn't work when each click leads to a new window opening! I went into options and my settings have not changed, they still say "open new tab" for links. This just started happening out of the blue today. What's up?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • When interactive pdf opens in browser window can the pdf links open in separate windows

    Problem is the pdf works ok when it opens in the browser window, BUT the links in the pdf don't open in separate browser windows, as they do when the pdf is downloaded as a file.
    If pdf links can only open in separate browser window when the pdf itself opens as a separate file, the how do I email a pdf download link on a website.

    Hello Yesh,
    you can open PDFs as a guest user (without authentification):
    1. Allow Guest Access (Admin -> Security Configuration -> Check "Allow Guest Access" and select a folder name).
    2. Copy your Report into this guest folder
    3. You can open the Report as PDF with a link like this:
    http://(bip-server-name):9704/xmlpserver/(guest-folder-name)/(report-name)/(report-name).xdo?_xpt=0&_xf=pdf&_xmode=4(&report-parameters)
    Just replace the strings in brackets. You find a great description of the URL parameters in Tim Dexters Blog
    http://blogs.oracle.com/xmlpublisher/2006/07/accessing_xmlp_enterprise_repo.html
    I didn't find an option to set the height of the PDF-Output for the guest user in the BIP-UI. Maybe I missed something. But you can manually edit the configuration file. It is located on your BIP server direcory in the subdirectory xmlp/XMLP/Users. Select the guest users subdirectory and edit the configuration file "user~.profile".
    In this XML config file there is an entry "viewerHeight". In the Value-Tag you can enter the PDF output windows height in pixel (but unfortunaly not in % - this was the question of my original posting).
    Hope that helps...
    Sascha
    Edited by: sascha@tesat on Oct 26, 2009 9:02 AM

  • Can Muse make hyperlinks open in a separate browser window?

    Is there a way to make hyperlinks within Muse open in a separate browser window?

    Yes there is, with the hyperlink selected click the blue "hyperlinks" aat the top then select "open the link in a new window or tab"

  • Opening New Browser window for click event on an image

    hi all,
    I want someone to help me out solving the problem of opening
    a new browser window on the mouse click event of an image or a
    button etc.... The new window would contain the datagrid details
    from the main window, but in an expanded form. If at all there is a
    solution, I even want to know whether there is anyway for sizing
    the poped up window,because I dont want the new poped up window to
    cover the entire screen.
    For getting better idea of my problem, the best example I
    could give is the popup window that appears when we click on the
    preview button while posting the message to the forum.
    Someone please do help me out in this regard.
    Thanks,
    amar.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • Opening additional browser window causes problems

    When I open a new browser window in Firefox 5.0 (i.e. I've already got Firefox open and hit <Ctrl> + N) the second browser window takes over a minute to load pages... and all instances of Firefox slow way down -- so there are major lags no matter what I'm doing in Firefox. For example, it takes 15 seconds or more for Firefox menus to appear after I scroll over them, and the same goes for bookmarks. Or when filling in a form, there are long delays after making keystrokes.
    If I close the second browser window, things return to normal.
    I'm on a Windows 7 64-bit computer if that helps in diagnosing the issue.
    Any ideas what's going on? I often need more than one browser window open, but can't do it with Firefox 5.
    Thanks

    if I use setTimeout and the user doesn't have Javascript enabled, how will I refresh? ... hmmm... maybe meta-refresh...
    My guess is that the browser is taking the link click as a sign that the browser is leaving the page (even though it's not) and stopping the meta-refresh timer for the page...
    Probably your only choice is to use Javascript, the link's onclick handler can reload the current page to make things reset... or manage setTimeout() function to reload the page or something.

  • Cache problem for servlet opening new browser window

    Requirement:
    I have JSP page say summary.jsp with link "print account summary"
    When user clicks on this link, new browser open with PDF document of summary.jsp
    This new browser window should not have address bar and toolbar.
    Solution:
    Servlet called PrintSummary which sets contenttype=application/pdf and sends the data to outputstream.
    href of link is
    Java script function is:
    function openWindow(url){
    window.open(url,'blank','toolbar=no')
    Problem:
    Since the URL of this new window is
    http:// host:portnumber/PrintSummary
    Even if I click the "Print summary" link for account2,
    being the same URL (http:// host:portnumber/PrintSummary) it accesses the existing page in the cache which is created for account 1.
    In href if I just use servlet url as
    I get the expected behaviour but then I don't have control on browser appearance and browser window will be with address bar and toolbar.
    The only option I could think of was changing URL as follows:
    <% String url ="javascript:openWindow('PrintSummary? var1="+ Math.random()+"')";
    So that URL is different all the time
    Is there any way to solve this problem?
    Thanks in advance
    M.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • How i can open a browser windows using a button in jsf ?

    Hi
    Thank you for reading my post
    how i can open a browser windows using a button in jsf ?
    for example if i want to open a window which will show http://www.mywebsite.com?name=TestName&family=TestFamily
    and before opening the window i need to set those two variables.
    can some one help me with a solution ?
    thank you

    Hi Legolas,
    Please refer to the answer provided by Chris in the EA forums.
    Cheers
    Giri

  • Opening a browser window with Java

    Is there a way I can open a Browser Window (with a specific html document) from Java? Thanks.

    Use Runtime.exec(cmd) with the following command:
    Under Windows 9x:
       command.com /C" start "urltofile.html"Under other Windows:
       cmd.exe /C [start] "urltofile.html"  (start is needed when url begins with 'http://")

  • Opening a Browser Window on event

    Upon a Hyperlink listener event I wish to open a browser window. Is there a system calll to do this? I would like to open the default browser, whether it is IE or Netscape. Any suggestions or hints?

    below works:
    import java.io.IOException;
    /** * A simple, static class to display a URL in the system browser.
    * * Under Unix, the system browser is hard-coded to be 'netscape'.
    * Netscape must be in your PATH for this to work. This has been
    * tested with the following platforms: AIX, HP-UX and Solaris. *
    * Under Windows, this will bring up the default browser under windows,
    * usually either Netscape or Microsoft IE. The default browser is * de
    termined by the OS. This has been tested under Windows 95/98/NT. * * Examp
    les: * BrowserControl.displayURL("http://www.javaworld.com") *
    BrowserControl.displayURL("file://c:\\docs\\index.html") *
    BrowserContorl.displayURL("file:///user/joe/index.html");
    * * Note - you must include the url type -- either "http://" or "file://". * */
    public class BrowserControl{
    // Used to identify the windows platform.     
    private static final String WIN_ID = "Windows";
    // The default system browser under windows.
    private static final String WIN_PATH = "rundll32";
    // The flag to display a url.     
    private static final String WIN_FLAG = "url.dll,FileProtocolHandler";
    // The default browser under unix.     
    private static final String UNIX_PATH = "netscape";     
    // The flag to display a url.     
    private static final String UNIX_FLAG = "-remote openURL";     
    *     * Display a file in the system browser. If you want to display a     
    * file, you must include the absolute path name.     
    *     * @param url the file's url (the url must start with either "http://"     
    * or     * "file://").     */     
    public static void displayURL(String url)     {     
    boolean windows = isWindowsPlatform();     
    String cmd = null;          
    try {          
    if (windows) {     
    // cmd = 'rundll32 url.dll,FileProtocolHandler http://...'
    cmd = WIN_PATH + " " + WIN_FLAG + " " + url;     
    Process p = Runtime.getRuntime().exec(cmd);     
    }               else {          
    // Under Unix, Netscape has to be running for the "-remote"     
    // command to work. So, we try sending the command and
    // check for an exit value. If the exit command is 0,
    // it worked, otherwise we need to start the browser.
    // cmd = 'netscape -remote openURL(http://www.javaworld.com)'
    cmd = UNIX_PATH + " " + UNIX_FLAG + "(" + url + ")";     
    Process p = Runtime.getRuntime().exec(cmd);     
    try {                    
    // wait for exit code -- if it's 0, command worked,          
    // otherwise we need to start the browser up.
    int exitCode = p.waitFor();               
    if (exitCode != 0) {               
    // Command failed, start up the browser     
    // cmd = 'netscape http://www.javaworld.com'     
    cmd = UNIX_PATH + " " + url;          
    p = Runtime.getRuntime().exec(cmd);     
    catch(InterruptedException x) {          
    System.err.println("Error bringing up browser, cmd='" + cmd + "'");     
    System.err.println("Caught: " + x);                    }
    }          }          catch(IOException x) {          
    // couldn't exec browser          
    System.err.println("Could not invoke browser, command=" + cmd);     
    System.err.println("Caught: " + x);          }     }
    /**     * Try to determine whether this application is running under Windows     
    * or some other platform by examing the "os.name" property.     *
    * @return true if this application is running under a Windows OS     */
    public static boolean isWindowsPlatform()     {     
    String os = System.getProperty("os.name");     
    if ( os != null && os.startsWith(WIN_ID))          
    return true;          else               
    return false;               }     
    /**     * Simple example.     */     
    public static void main(String[] args)     {
    BrowserControl.displayURL("http://www.javaworld.com");     }}

  • I have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    i have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • Openning a browser window/ send email

    Hi,
    I have a java app running as a rich client plugged into the Eclipse framework.
    I would like to be able to email the log files to a help desk. I want this to occur in two cases. 1) When a fatal error occurs (we have an exception catch block handling this), 2) If the user clicks a button to prompt it.
    If the user has an email client installed on their pc I need it open an email window with the To, Subject & Details filled in (if possible, create an attachment with the log file). - This is the same functionality as the html .
    If the user has no email client installed, then open a text file containing the log.
    What is the best way to do this. Do I use the java mail api? Any suggestions/example/links welcom.
    Thanks
    Richard
    PS> We are using SWT to develop the rich client.

    Thanks for the reply, but that's my issue. I don't want to have to know what the email client is. This because I would want to invoke this from multiple clients, and don't want to have to configure each to know the email clients settings.
    How can I open the default browser from a java app? Then I'll use the mailto cmd. Thanks

  • Opening modal browser windows

    I have a question concerning opening modal browser windows.
    The UIX framework provides a javascript function called "openWindow". E.g. the ui:dateField uses this function to open it's separate browser window.
    The good thing using this function is, that the opener browser window gets shadowed and isn't accessible anymore.
    Therefore I also want to use this function to open my own modal windows. The problem here is that any postback in the modal window enables the opener window again.
    Interesting point is, that the date picker for a ui:dateFields also performs postbacks but the opener window stays shadowed.
    How can I perform postbacks in my own modal window and keep the opener window disabled?
    How does it work when using the date picker?

    Christian -
    I can provide some background about how the modal date picker window deals with this issue - and I think that you can use the same technique...
    The UIX body component has a built-in unload handler that gets called when the page is unloaded - for example, when you post data in your modal window. The unload handler will check to see if the page is a modal child of its parent window - and if so, will re-enable the parent window (the assumption here is that once the page has been unloaded, the modal child will be hidden).
    The solution that UIX uses for the date picker window is to place the contents of the child window inside of a frame set. The actual contents of the window are embedded inside of a frame inside of the frame set. That way, when you navigate inside of the child window, the body's built-in unload handler is still called - but, it no longer enables the parent window, since the body is no longer a child of the parent window - but is a child of the frame set.
    I think that you can implement a similar solution by embedding your modal window contents inside of a UIX frameBorderLayout component.
    Andy

  • BSP-The output page should open  separate browser .So what to do?

    Hi friends,
    I have 2 pages in BSP Input ,output pages.
    If i give input material no as input page  the material discription ,plant will display in output table of second page.all are fine.
    But i want the output page should open  separate browser .So what to do?
    Moosa

    Hi ,
    Sorry but I did not get your requirment.
    WK_URL is having some image output.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <%@ page language="abap" %>
    <html>
    <iframe src="<%= wk_url %>" width="100%" height="500px">
    </iframe>
    </body>
    </html>
    If you want to display the image in a different window, simply use
    window.open('image_page_name.htm')
    from the calling page.Suppose you want to call it on click of a button
    <htmlb:button onC lientCl ick="javascript:call_window();" />
    <s cript type='t ext/j avascript'>
    function call_window()
    window.o pen('image_page_name.htm')
    </s cript>

  • Open a browser window at client side

    Hi All,
    I have to open up a new browser window at the client side when a user clicks on a button.
    What are the possible ways to do this, and what is the recommended way of doing this taking into consideration the browser dependencies.
    I tried with giving a destination as http;//google.com to <af:goLink > with _blank  targetFrame.
    Can you please proved some links that can help me in doing the best possible way.
    Regards,
    ND

    Hi,
    it depends on what the use case is: Do you want to open a page of the application in a separate window or do you want to open a browser window that does not belong to the application itself ? Options you have are
    i) goLink with targetFrame = _blank (as you guessed)
    ii) issue JavaScript from Java that invokes window.open on the client (works with all browsers)
    iii) Use the dialog framework navigating with dialog:navigation-case and the command button setting to useWindow = true (Use it to open pages of the application in a dialog)
    iv) Use af:popup for dialogs that open as part of a page. (Use to show additonal information like list of values)
    Frank

Maybe you are looking for

  • Problems with Audigy Platinum and Firew

    Hi, I've been running my Soundblaster Audigy Platinum on my Win2k-System for some years and have just encountered some weird problems with the Firewire-Connector. When I connect an external DVD-Burner everything works fine. But when I connected an ex

  • Weird problems with GarageBand

    Hi all, First post and relatively new to Mac, so sorry if any of these comes across as newb-ish. I recently recorded some projects in GarageBand consisting of all live instruments. Two guitar tracks, two drum tracks, two vocal tracks and a bass track

  • Color differences between LR and other editing/viewing programs

    Thanks for the great info here. I'm hoping someone might know the answer to a question that is driving me over the edge. I SURE would appreciate sincerely any help. My problem is this: If I load a picture into Word, Firefox, IE, or other picture edit

  • 1099 WTH tax reporting

    Hi, We are looking at generating 1099 forms for previous years i.e. 2011 and 2012. The problem is every year the 1099 form is updated by a SAP Note as per changes made by IRS and whenever I print 2011 data, I get it in 2014 format. Has someone faced

  • Excel Survey in SharePoint: is the responses file open for everyone?

    If I make an Excel Survey in OneDrive for Business, is the Excel Workbook that contains the responses open for everybody? Because if it's not, are the users able to submit a survey? Is there another way of doing an Excel survey where the responses wi