How do I open an iview in a FULL pop up window

I am trying to open an iview in a new window, and I want to display this new window in full page. I tried "FULL_PAGE" in the drop down option for Height Type. But it didn't work. I know that you can display the pop window in a full screen mode in "Window Features" field in the iview, but full screen is not what I am looking for. I want to make the window maximized instead of full screen (which won't have the "x" close button).
Please help! Thanks in advance.

Have you tried changing iView property <b>Launch in New Window</b> to <b>Display in Separate Window</b>?
Also you can do it using java script as,
<script>window.open('"+youriviewURL+"','popup','width=800,height=600,left=10,top=10,resizable=yes,scrollbars=yes');</script
Regards,
Nitin

Similar Messages

  • How can I open the WD iView within the same pop-up window?

    I have created a Web Dynpro(for ABAP) iView direct link that a hyperlink action.
    (From different Web page)
    And I used window.open(appointment to target) of javascript for opening only one window.
    However When I click the link it opens in a new window every time.
    (Also iview of different type is same)
    How can I open the WD iView within the same pop-up window?
    Could anybody help me by giving suggestion and codding?
    Regards
    Jin

    Hi JinKyu,
    Have you tried <b>window.location()</b> in place of window.open() something like
    <b>window.location = 'URL'</b>
    Rgds,
    Vivek

  • How can I open a document with applescript without the doc. window opening.

    How can I open a document with applescript without opening the document window and speak the text of the document?  I can get it to open the file but the doc window always opens up. 

    try
              set pathToMyFolderOnDesktop to ("Macintosh HD:Users:jodyconnor:Desktop:") & "Dsource:" as alias
              set rnd to (random number from 1 to 6)
              set rndFileName to (rnd as text) & ".scpt"
              set FullPath to pathToMyFolderOnDesktop & rndFileName as text
              set myScript to load script (FullPath as alias)
      run script myScript
    on error the error_message number the error_number
              display dialog "Error: " & the error_number & ". " & the error_message buttons {"OK"} default button 1
              return
    end try
    This code answered my question:  Hats off to Digimonk from stackoverflow and Darrick Herewe from stackoverflow.

  • How do you open a media player as a POP-UNDER?

    hello there,
    I am trying to open a media player file as a pop under window, but it pops UP instead. Here's the script... any ideas??
    Thanks!
    <!--function popOpen()
    window.open("http://repweb2.earnware.com/RepWeb/Oasis/Recom/audio/12YearsAgo.asx","pop_under_window","width=700,height=700,toolbar=no");
    self.focus();
    </script>
    OPEN -->

    That's JavaScript, and JavaScript is not Java.
    These forums are for Java-related questions.

  • IView in an full screen external window

    hello,
    i've configured an iview to be opened in an external window.
    it works well but i can't find how to automatically maximized this new window?
    best regards

    You could set the "window features" property of the iview as you would do in a window.open() method usage in javascript.
    In the window.features you could say 'fullscreen=yes'. However, beware that if you do fullscreen=yes then you will not have the browser window features like close button, minimize, restore buttons. So if you have ot go to another screen you have to do an ALT + TAB.
    or you could fix the starting point of hte window to 0,0 on the screen so that it starts at the left-top corner of the screen. To do that you have to set left=0, top=0 in the "Window Features" property apart from the height and width properties.
    Pradeep

  • How to change the size of New Page create pop up window ?

    In Site Actions on clicking of New Page the pop up page is opened it is stretched mode.
    I want to change the width of that pop up windows only.
    After pressing F12 key i find that it is happening because of the java script  function on calling of which that page is opened.
    But i am unable to find that javascript function from where it is calling or where it is written or how i can modify that function.
    So please help me out in solving that issue.

    Hi,
    According to your post, my understanding is that you want to change the size of the new page pop up dialog.
    We can create a new dialog with proper size to achieve it.
    I have made a simple code demo to create a new dialog with proper size, you can have a look at it.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    ready();
    function ready(){
    $("span[title='Open Menu']").click(function(){
    //alert(2);
    setTimeout(openNewPageClick,500);
    function openNewPageClick(){
    //setTimeout(openNewPage,1000);
    $("#mp1_0_3").removeAttr("onMenuClick");
    $("#mp1_0_3").click(function(){
    url="http://sps/_layouts/createwebpage.aspx";
    openDialogBox(url);
    function openDialogBox(url){
    var options = SP.UI.$create_DialogOptions();
    options.url = url;
    options.height = 900;
    SP.UI.ModalDialog.showModalDialog(options);
    </script>
    Note: You should change the ID or class to fit your environment.
    More reference:
    http://kyleschaeffer.com/sharepoint/sharepoint-2010-pop-up-dialogs/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to Pass Variables from One Application to Another Pop Up Window

    Hi,
    I am wondering if anyone on the list has tried calling up a
    pop up manager, and have two other variables imported for secondary
    usage. I have tried using [Bindable], but this does not seem to be
    working, and I am still getting errors that tells me that the
    variables are "not defined" when it gets passed to another
    HTTPService. I tried embedding the Pop Up Manager in the same
    application as the one that is supposed to "pass the variables,"
    but it no longer acts as a pop up window.
    Could anyone please tell me where I can find the answers for
    this?
    Thanks in advance.
    Here is the code of what I have for my pop up manager:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    title="New Scenario"
    showCloseButton="true"
    width="325"
    height="145" horizontalScrollPolicy="off"
    close="titleWindow_close(event);">
    <mx:Script>
    <![CDATA[
    import mx.events.CloseEvent;
    import mx.managers.PopUpManager;
    import mx.controls.Alert;
    [Bindable]public var message:String;
    [Bindable]public var message2:String;
    private function titleWindow_close(evt:CloseEvent):void {
    PopUpManager.removePopUp(this);
    private function submit_click():void {
    Alert.show(scenario_name.text, "Alert");
    new_scenario.send();
    PopUpManager.removePopUp(this);
    var win:Hello = PopUpManager.createPopUp(this,Hello, true)
    as Hello;
    PopUpManager.centerPopUp(win);
    private function reset_click():void {
    scenario_name.text = "";
    ]]>
    </mx:Script>
    <mx:HTTPService id="new_scenario" method="POST" url="
    http://localhost/simulator/scenario.php"
    useProxy="false">
    <mx:request xmlns="">
    <scenario_name>{scenario_name.text}</scenario_name>
    <message>{message}</message>
    <message2>{message2}</message2>
    </mx:request>
    </mx:HTTPService>
    <mx:Form>
    <mx:FormItem label="Scenario Name:">
    <mx:TextInput id="scenario_name"
    text=""
    maxChars="45" />
    </mx:FormItem>
    </mx:Form>
    <mx:ControlBar horizontalAlign="right">
    <mx:Button id="submit"
    label="Submit"
    click="submit_click();" />
    <mx:Button id="reset"
    label="Reset"
    click="reset_click();" />
    </mx:ControlBar>
    </mx:TitleWindow>

    Hi,
    I am trying to display some data on the Child window that
    would need to take the data from the parent titleWindow, which
    could be drop down menus, text labels or combo boxes. I would need
    to use a HTTPService on the child dialog box to accomplish task I
    think, but the problem is, how would I get the information from its
    parent window? The example I have are all about how the text input
    from the child window gets feed back to the parent.
    Would I need to create a "reverse" declaration or something
    so I can access the information from the parent in the child
    window?
    I hope this makes sense.
    Thanks for your help.
    Alice

  • TA20406 how do I open a TextEdit file, step by step for windows

    Please, explain and show me how do I set up textedit

    The question in the title of your post doesn't seem to match the question in your post.
    I don't have an early version of OS X so, unfortunately, I cannot answer your question about "setting up" TextEdit on "Mac 10.3 or earlier" and be sure my answer is correct.  In later versions, TextEdit saves in rtf (rich text) format by default or can be set in TextEdit/Preferences to save as txt format (plain text). Either should be readable on a Windows PC. I don't recall if Notepad on Windows reads rtf files, it certainly reads txt files.  Microsoft Word should open either.

  • How do I open hyperlinks inside embedded pdf in a new window?

    I have a pdf that contains hyperlinks to other website. This pdf itself is available as a link on a website. When this pdf is loaded in IE window, and user clicks on any of the links inside this PDF, the link opens in the same window. I want all the links to open in a new window.

    I'm trying to accomplish this same thing and am having a hell of a time finding the right Class, right Methods, and/or right Properties for a solution.  Some classes seem to return obscure errors when I try to create them use the invoke node "launchURL" (the WMPLib.ICore for example).  If I use the Player base class (which MSDS says is the root class and the class that is used when you create an embedded player) I don't get anything.
    What I would like is to progmatically launch Windows Media Player to play a particular video clip in full screen on the secondary monitor.  It seems like this should work:
    But doesn't... any ideas for this?  The C# examples are difficult to understand for me.  Also, the WMP class library is a MESS! (IMHO).  Thanks for your input.

  • How do I open the Database Tables in the Object Explorer window.

    I tried clicking on them and right clicking but they dont open.

    Hi frustrationmultiplied,
    Samir’s opinion is right. Data storage is a database, which is a collection of tables with typed columns. The data in the database are stored in primary data files with an extension .mdf. Secondary data files, identified with a .ndf extension, are used to
    store optional metadata. Log files are identified with the .ldf extension. For more information, please refer to the document below:
    Files and Filegroups Architecture:
    http://technet.microsoft.com/en-us/library/ms179316(v=sql.105).aspx
    If we want to review SQL Server database data by using Excel, we can Exporting SQL Server Data to Excel. For more information, please refer to the document below:
    Exporting SQL Server Data to Excel:
    http://msdn.microsoft.com/en-us/library/cc952922.aspx
    In addition, if you want to get started with SQL Server and learn to write Transact-SQL, please refer to the following articles:
    Getting Started with the Database Engine:
    http://msdn.microsoft.com/en-us/library/ms345318.aspx
    Basic Navigation in SQL Server Management Studio:
    http://msdn.microsoft.com/en-us/library/ms166547.aspx
    Writing Transact-SQL Statements:
    http://technet.microsoft.com/en-us/library/bb264565(v=sql.90).aspx
    http://msdn.microsoft.com/en-us/library/ms365303.aspx
    If you have any question, please feel free to let me know.                   
    Regards,
    Donghui Li

  • How can i open a document with mac that has a windows OS?

    i have installed a parallel and windows OS in my macbook pro. I am running some pdf illustrations... i have installed adobe but the document cannot be opened.

    If the other posts have not answered your questions, then some more information is needed. What OS are you using, Windows does not say much. Also, what product did you install. Adobe is not a product, but the name of the company with many products. I suspect you meant Reader XI, but I have no clue.

  • How do i open up the photoshop CC software from my Windows computer?

    I've tried to just open up the photoshop software from my computer but to no avail. I need help with that, please and Thank you!

    Hi Shinegold,
    Please let us know what exactly happens when you try to launch Photoshop.
    Try to navigate to the below path
    C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)  and then double click on Photoshop.exe file.
    Thanks

  • How do I open other word documents? I get this Windows cannot find 'C:Users...etc.

    I cannot open a word document. I get this message everytime "Windows cannot find 'C:\Users\Edwina\AppData\Local\Microsoft\Windows\Temporary Internet Files\Low\Content.IE5\7U9W11DO\Week 5 Assignment Sheet[1].docx'.  Why can I not open any documents that are saved in Word and sent to me?

    Hi,
    Do you have Microsoft Word installed on your machine ? If NO, you can use Word viewer to view (& print) Word documents.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to find out the view that calls a pop-up window?

    Hi,
    The BP_HEAD_SEARCH component is a pop-up called by several other components (Contact, Activity, etc).
    So I need to customize it in according to which view called it (BP_HEAD or BT126H_APPT, for instance). I see OUTER_REP_VIEW attribute, however it has several protected attributes and, some times, it doesn't work because it hasn't parent attribute filled.
    Regards,
    André

    Xavier,
    However the value is always BuilHeaderAdvancedSearch.
    Let me explain again:
    Several views around the system use the BP_HEAD_SEARCH component to search up a partner. The most of them use the SearchHelp view and the configuration is object and subobject as . The component usage is always CUAccountValueHelp.
    For example, in the Activity (company field) or in the Organization - Relationship assignment block, if you use the pop-up to search a partner, the configuration is the same.
    But I need to know who called the pop-up: Activity module (BT126H_APPT) or Organization - Relationship (BPData)?
    Regards,
    André

  • How the heck do I hide the annoying yellow pop up window?

    ...you know, the yellow box that pops up and covers everything so you can't see what you are doing when you want to re-size a region?
    thank you people

    they are help tags, you disable them in Preferences>Display>General. uncheck the box that says show help tags

Maybe you are looking for