How to simulate Javasript "window.open"?

Hi,
I am working on a GUI based on JATO. I am trying to
create a window that pops up when the user clicks a button, leading to further UI interaction through that
window(i.e.it has its own text fields, buttons,etc).
How do I accomplish that in JATO? Before, I used to call
the window.open() function in Javascript.
thanks
vignesh

Vignesh,
You would do the same thing, except your URL must be a valid JATO URL.
See this JATO Tip at this link and ask more questions if you still have some. It's not exactly the same thing you need to do, but the techniques should apply:
http://groups.yahoo.com/group/iPlanet-JATO-Tips/message/3
craig

Similar Messages

  • How to get the window.opener object into a model window

    Hi,
    I m opening a new popup window with the help of window.showModalDialog(url,self,''). Now i want to access the opner window inside this popup window. Since this showModalDialog does not support window.opener so i passed 'self' as parameter and if i want to access the parent window i can access it with the help of window.dialogArguments . But the problem is window.dialogArguments is not an object .
    for e.g.
    var caller = window.opener
    then caller can be used as object but if i do like this
    var caller = window.dialogArguments
    then i can't use caller as an object.
    Can anybody tell me the correct way.
    manish

    Hi Manish,
    I'm trying to use as well showModalDialog in IE and in the same time have a similar experience in other browsers (like Firefox) - similar to the Hotmail Empty Junk mail button, so here is a piece of code you might be interested in:
      Caller page
      // showModalDialog for Non-IE browsers
      if (!window.showModalDialog) {
        window.showModalDialog = function(sUrl, vArguments, sFeatures) {
          var wFeatures   = sFeatures.replace(/dialog/gi,"").replace(/:/gi,"=").replace(/;/gi,",");  // plus a little more replacement
          var modalWindow = window.open (sUrl, "_blank", wFeatures);
          modalWindow.setFocusToWindow = function () {
            modalWindow.focus();
          modalWindow.setInterval ("setFocusToWindow()", 100);
      // Show modal dialog...
      window.showModalDialog ("modal_dialog.html", self, "dialogHeight: 300px; dialogWidth: 400px; center: yes; help: no; status: no")
      modal_dialog.html
      // IE only - other browsers will be fine
      if (window.dialogArguments) {
        window.opener = window.dialogArguments;
      // Write something back in the opener window
      window.opener.document.write ("here you go...");

  • How to make New Windows open where I want!

    Every time I launch Safari, it opens the window on the left side of the screen. How to do get it to open on the right side? I'm sure there is a keystroke combination to reset the default position or AppleScript, but I can't find one. Any help would be greatly appreciated.
    Thanks in advance!

    I had the same problem way back. I finally gave up and now use the following applescript. Change the pixel coordinates of the top left and bottom right of the window, that appear in parentheses, to fit size of your screen. Mine is set for my 2x" early Cinema display.
    javascript:self.moveTo(190,0);self.resizeTo(1150,995)
    Make a bookmark put this script into the URL area of the bookmark (right side) and rename it to something like "my window size" and then put it in your bookmark bar folder. Then just click on it in the bookmark bar and window will move and resize to whatever you have entered in the parentheses.
    Fair winds and happy bytes, Dave Flory

  • How to make safari window open up to my size pref

    Sorry about the long subject title. Everytime I open safari on my Apple computers the safari window will open up in a different size or place. How can I set it to open to my own default like preference so that it covers the screen when I open safari.
    Does that make sense?
    Thanks!

    Thanks alot for the quick response. However, my problem is that I do resize the window with the lower right drag every time I open safari. It doesn't seem to save the setting or something. If I stretch it out huge....next time I open, it will be tiny, (and hitting the green button doesn't fix it) or in a different possition.
    Any other ideas?
    Thanks!

  • How to tracking all windows open event?

    I have a pb 11.5 app. I want to track when user open any window. Firstly, use need to open login window and verified by username and password. After that, open a main frame window with menu.  Then user will open any window for the app. I want to track when a user open a window.
    Simple solution is: in open event script for each window add a code to track who and when open this window. This need too many code as the app has more 400 window object.
    Also thinking about a solution, like a global service, when open any window, log this open event. but not sure how to do it. W
    What's the best solution with minimum code for this issue?

    You can create a new ancestor for all the windows with the code you want. Any window that is inherited from window needs to be edited to inherit from your new ancestor. That's the simplest way to do it.
    If you edit source on windows inherited from window they look like this:
    forward
    global type w_child_gen from window
    end type
    end forward
    shared variables
    end variables
    global type w_child_gen from window
    Change the work window to w_newancestor or whatever you called it. That's the simplest solution with minimal code changes.
    To find these windows you can use pbsearch to look for "from window"

  • How to make download window open to front

    When I download a file, how can I make the download window automatically come to the front?

    THANK YOU! I don't know which idiot thought of removing the downloads window in favor of that ridiculous menu but I've been tearing my hair out trying to fix it. The old window has everything you need in one easy window while the menu requires multiple steps to check EACH download. I was ready to drop release 20 and go back to 19.

  • How to close the window openned by System Exec VI automatica​lly?

    Hello,
    I am using System Exec VI to lauch an exe file built from a LabVIEW program. When running System Exec VI, the window of exe file pop out and stays there even after all tasks are completed. I have to close it every time manually. Anyone here know how to close the exe file window automatically when it's done?
    Thanks,
    Jean
    Message Edited by Jean_CLD on 03-25-2010 11:25 AM
    Message Edited by Jean_CLD on 03-25-2010 11:29 AM
    Solved!
    Go to Solution.

    If I understand the question correctly you need to add an invoke node at the end of your application to exit. Depending on the whether it is running as a stand alone application or within LabVIEW it will either exit or stop execution. I've attached the VI I use in my applications.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot
    Attachments:
    Exit application.vi ‏13 KB

  • Hi Any ideas how to solve repetitios window opening?

    PLEASE URGENT
    I try to make my flash banner lead me to a URL but every time
    the banner reloads it opens new window over and over again. What
    should i do with the script........maybe is about on which frame i
    put the script Thanks a million:
    _____script : _____________________on (release) { getURL ("
    http://www.moet.com/home/flash.html?langue=us");
    confused;

    Your code seems ok. except for that semicolon ( ; ) just
    before the curly cracket ( } )
    I sometimes had some weird behaviours happen when i finished
    a line of code like...
    i was taught that a semicolon also tells flash that the line
    is over, that there is nothing past that point on that line.
    Maybe its causing some weird functionality for you too.
    If not... then my guess is that your problem lies somewhere
    else in your code. Or maybe a stray getURL() along the time line in
    your banner.
    Double check for any stray code you may have in your
    movie...If nothing comes up, post the rest of your code here, and
    we'll see if there might be a reason for your troubles.

  • When I have multiple browser windows open - but in the "minimized" mode - and I want to open up one of them for viewing, ALL of the windows automatically open as well. How do I prevent this annoying function. I cannot find it anywhere in the options.

    This does not appear to be a system issue, but rather a functional aspect of the browser windows. E.g., if I have 7 browser windows open to different sites... and all are Minimized, and I decide to open one to study, THEY ALL POP OPEN automatically. I am using Firefox v3.6.8 on Windows 7. This is an annoying behavior of the browser, and I am sure it can be somehow "turned off" but cannot determine how to do that. I have looked through all options. I am not a techie, but have reasonable proficiency with software apps.

    This can happen if you drag a tab slightly down in the browser window while clicking.
    Firefox has a feature called tear-off tabs
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.
    You can also do this via the right-click context menu of a tab: Move to New Window
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • Since upgrading to FF v4, every time I open a "new window", all other instances of FF windows open, how can I keep this from happening?

    Since I started using FireFox version 4, every time I open a "new window", all other instances of FireFox windows open up. This is annoying as it often covers up instances I am currently using with instances that I don't wish to use right now. I can't seem to find a way to keep this behavior from occurring.

    Try go to '''about:config''' search for '''browser.startup.homepage''' change its value to:
    '''about:home''' - default page<br>
    '''about:blank''' - blank page<br>
    '''url''' - a page that you want
    Also:
    *[https://support.mozilla.org/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in safe mode]
    *[https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems Reset Firefox]
    *[https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware Problems caused by malwares]
    *[https://support.mozilla.org/kb/how-to-fix-preferences-wont-save Preferences won’t save]
    *[http://kb.mozillazine.org/Preferences_not_saved]

  • I am trying to open PDF files from safari, but when I click on them they open in a separate window and the information is encrypted. Any ideas on how to get them to open them in Adobe? Any help please!

    I am trying to open PDF files from safari, but when I click on them they open in a separate window and the information is encrypted. Any ideas on how to get them to open them in Adobe? Any help please!

    The pdf is loading as html code. If you save it, it will download as :
    605124.pdf.html
    Change the extension to .pdf
    And it opens and works perfectly, I just tested it:
    Use this link to download it automatically:
    http://saladeaula.estacio.br/arquivo.asp?dir=00/1020624/605124.pdf&num_seq=59828 4

  • When I have the downloads window open and I close the browser window, how can I get the browser to open the homepage the next time I start it while the download window is still open?

    When I have the downloads window open and I close the browser window, the next time I reopen the browser while the downloads are still going, it returns me to the last page I was on. All previous versions of Firefox would return me to my homepage which I would prefer. Please let me know if this is possible.

    When you re-open Firefox and choose Restore Session, by default it picks up your most-recently-open window, and the other windows should then show up in Recently Closed Windows.
    The Firefox add-on Session Manager lets you manage how many closed windows and closed tabs are saved, in case it's not enough.

  • How do you have 2 Safari windows open and show both pages simultaneously on the monitor

    How do you keep open 2 Safari windows and show both pages on monitor?

    While in Safari with your first window open go to the File menu and select New Window. That will open the second window on which you can navigate to your second web page. Resize both windows to fit on your display.

  • If I have several tabs/windows open and I go to a new page, it hijack several of my current windows with that same URL. How to stop?

    I frequently have a couple of windows with several tabs in each window open. For example, I always have a small window open in the corner of my screen with a time tracking program set up. Sometimes when I open a new tab or window and go to a URL (not thru a search engine, but just directly), it will "hijack" one or more of my other tabs/windows and plug in that same URL, losing whatever I had previously open. I've checked through all the prefs and I don't see why or how this problem is happening. What gives? I'm on an iMac using OS X Yosemite 10.10.1 using Firefox 34.0.5. HELP!

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Using Maverick, how is it possible to open more than one calendar window?

    Hi, I'm using Maverick 10.9.1
    My question is: how is it possible to open more than one calendar window? i would like to have on the right my personnal calendar dates and on the left, my company calendar.
    Many thanks in advance for your help!
    ph

    See if the section on group calendar helps.
    http://www.dummies.com/how-to/content/basics-of-calendar-in-os-x-mavericks.html

Maybe you are looking for

  • How do i send a group text message to a group saved in my phone without having to go to select each person individually

    how do I send a group text message to a group saved in a Motorola droid razr m without having to select each person individually

  • Using Open With to move files to PhotoMatix

    I've been trying to setup Bridge CC to open multiple raw files.  I changed the file type association to PhotoMatix and I can open with single RAW images with PhotoMatix but when I highlight multiple files in Adobe Bridge and try to send them to Photo

  • MacBook Pro Retina Mountain Lion - missing keystrokes

    Intermittant missing keystrokes. Any app including TextEdit. Not keyboard (happens with attached USB keyboard). Comes in waves (sometimes seems to be ok then comes back). Happens with no WIFI and all other apps off. This thread also applies so generi

  • Export PDF size too large

    Hello all, Did a sponsors book up recently with 11 A4 pages full of photos and transperancies. When it came time to export to pdf so the customer could email it to protential supporters I could not get it to export at lower then 5mb After trying a fe

  • Message numbering error

    http://forums.ni.com/ni/board/message?board.id=170&message.id=362878#M362878 This thread shows strange numbering of messages. Message Edited by andre.buurman@carya on 10-20-2008 04:14 PM Regards, André Using whatever version of LV the customer requir