Web MDI needs to have an open window.

Hello,
I need to develop an app with an MDI interface.
Since Form 6i always needs to have a document window open inside the MDI, in a c/s env my launch form for the app would have a window which has a hzontal toolbar canvas and its minimize, maximize, restore, close feature set to false.
This creates a classic MDI look and feel in a client server env.
Porting the same to the web, does not achieve the classic feel bcos, the default window now on maximize does not merge its title bar with the MDI title bar. Hence i have lost the look and feel of the classic MDI.
Can u help me get the classic MDI look and feel back or someway i can get close to there?
Regards
Sena.

Sena,
I have the same problem with web forms and haven't been able to maximize the window like you can in c/s.
However, you can solve the problem by positioning/sizing your window to replicate the 'classic' look.
IF GET_APPLICATION_PROPERTY(USER_INTERFACE) = 'WEB' THEN
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, WINDOW_SIZE, 600, 400);
SET_WINDOW_PROPERTY('BASE', POSITION, 0, -16);
SET_WINDOW_PROPERTY('BASE', WINDOW_STATE, NORMAL);
SET_WINDOW_PROPERTY('BASE', WIDTH, 595);
SET_WINDOW_PROPERTY('BASE', HEIGHT, 385);
ELSE
SET_WINDOW_PROPERTY('BASE', WINDOW_STATE, MAXIMIZE);
END IF;
Regards,
Pete

Similar Messages

  • HT204406 I am having a very difficult time with accessing my music from the cloud.  I need to have itunes open on my laptop in order for it to work.  And as soon as I close out itunes on my laptop, it gives me a warning that all users will be logged out. 

    I am having a very difficult time with accessing my music from the cloud.  I need to have itunes open on my laptop in order for it to work.  And as soon as I close out itunes on my laptop, it gives me a warning that all users will be logged out.  Help!!!

    Where are iTunes files located?
    No, I do not mean just the music.  Copying just the media/music files or the media folder creates problems.

  • I Need to have many internet windows open at once

    I'm used to PC based work where I can have several internet windows open at once. I can't seem to do this on the iMac. I have downloaded Firefox, so I can use Firefox and Safari at the same time, but I would like to have at least 6 internet windows open at once so I may toggle between screens. How can I do this.
    I know I can have multiple tabs open in firefox, but this is no help, as selecting a tab and moving back and forth between tabs is pretty cumbersome.
    Thanks in advance for your help!

    Here's a good list of shortcuts:
    http://www.danrodney.com/mac/index.html
    Regards,
    Captfred

  • Need help with refreshing open window in new tab

    Hello all,
    First, all my other problems I've solved.  One last thing, being a newbie and trying things I've found on the net and them
    not working, I can use your help one last time.  My code has a Home page that peforms a Search (most of you have
    I am sure done this), and from that search submit a window opens in a new tab (browser tab) and has the results on
    it.
    That works fine.  What I'm having trouble with is being able to perform a new search and refreshing that open window
    with the new data.  Right now I am closing that window by clicking on the tab and then performing the search.
    While it works, it's not user friendly.
    So, I've tried the usual  mywindow=window.open("url.cfm"); and then trying to grab that handle to refresh, but to
    no avail.  Has anyone done this?
    Thanks!

    Here's an example of how you could do it.
    <script>
    function submitAndFocusTarget(form) {
      var win = window.open("", form.target);
      form.submit();
      win.focus();
    </script>
    <form action="index.cfm" target="mysearchwin" method="get" onsubmit="submitAndFocusTarget(this); return false;">
      <input type="text" name="search" value="" />
      <input type="submit" value="search" />
    </form>

  • I want to view web sites in more than one open window instead of tabs. How do I change the settings to do that?

    I want to have more than one window open with firefox at the same time instead of having multiple web sites up using tabs. but every time I try to do this a tab opens instead. I am using windows 7.

    You can copy a bookmark from one folder and paste it in another folder to have a copy in more than one folder.

  • Need to have pop up window in selection screen and capture the user action.

    Hello Friends,
                         I have a requirement, that need to show a pop up window after execution, and to get the action from user using a Push button.
    I create a selection screen and a sub screen as window.
    After user execute from the selection screen, I am popping up this window.
    Window contains some input values to be entered and push button to identify the user action.
    I try to capture the user action using sy-ucomm, but it does not hold any value when user press the button.
    How to overcome this issue.
    Here is the definition of the window.
    Pop Up Window for getting values
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW TITLE title .
    PARAMETER : p_vdate LIKE t9aa01-validfrom,
                p_dcggt LIKE t9aa01-hkont,
                p_dcgst1 LIKE t9aa01-hkont,
                p_dcgst2 LIKE t9aa01-hkont,
                p_na LIKE t9aa01-hkont.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 20.
    SELECTION-SCREEN PUSHBUTTON 2(10) text-001 USER-COMMAND SVE.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF SCREEN 500.
    Cheers,
    Senthil
    Edited by: Senthil on Jan 7, 2008 11:03 AM

    Hi,
    Try using the below code.
           data : w_var type string.
           CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
              DEFAULTOPTION        = 'Y'
               textline1            = 'test '
             TEXTLINE2            = ' '
               titel                = 'check'
             START_COLUMN         = 25
             START_ROW            = 6
             CANCEL_DISPLAY       = 'X'
            IMPORTING
              ANSWER               = w_var.
                     if w_var = 'J'.
                     else.
                     endif.
    Comments : J indicates Yes and N indicates No
    Regards,
    Jeswanth

  • Need to have a popup window from a link in a cfgrid

    I've got a cfgrid that is displaying some program
    information. I want the program number to have a link to a pop-up
    window which contains an edit form for that program.
    Here is the script for the popup window I used on my page
    before I implemented a cfgrid:
    <script type="text/javascript">
    function loadEditForm(id) {
    windowReference =
    window.open('frmPrograms.cfm?CFGRIDKEY='+id,"editProgramWindow",'scrollbars=no,menubar=no ,height=500,width=750,resizable=no,toolbar=no,location=no,status=no');
    </script>
    I've already changed the url to use the CFGRIDKEY.
    Here are my cfgridcolumns:
    <cfgridcolumn name="program_id" display="no">
    <cfgridcolumn name="program_name" header="Name"
    bold="yes" href="?" hrefkey="program_id" width="300"
    type="string_noCase">
    <cfgridcolumn name="description" header="Description"
    width="650" select="no">
    I tried making the program_name cfgridcolumn have an
    href="javascript:loadEditForm(#URLEncodedFormat(Trim(program_id))#)"
    but this isn't working. I get an error message that the variable
    program_id doesn't exist.
    I've done a grid that links to an edit form in another
    section, the difference is that wasn't using a pop-up window. And I
    can send my form to a new window using target=_blank, but I really
    would rather use a pop-up window for this.

    This link may help.
    http://www.danvega.org/blog/index.cfm/2008/3/4/ColdFusion-8-Grid-Context-Menu-Part-II

  • Some web pages need Java Platform to open-Can I download Java for I Phone?

    Cant opend some pages that needs Java to start.
    Where can I download Java Platform for I Phone 3D ?
    Thanks
    J.B

    Ok, It is my first time here on forum, so I posted by mistake the question
    several times SORRY !!!!!!! I tried to take it away but no.
    I have no intentions to "get extra responses".
    Banned ???? You must be joking !!!!
    I have bought a new Iphone 3D and cant open several pages with Java
    and I bring it up on ths forum, What is your problem ??

  • Can I have multiple open windows of a Page document?

    I can't see such a command anywhere.  Most all other Apps allow this and is very handy.  I have the latest Pages version (5.5) and Yosemite (10.10)
    TIA,
    Allan

    How might I make a suggestion to Apple to add multiple windows for a file?  I love the program otherwise but this is basic by today's standards!
    Allan

  • Nothing happens when I press File/New Tab. Under Tools/Options/Tabs I have checked 'open windows in a new tab instead' and 'always show tab bar.' Pressing File/New Window does open a new window. How can I get new tabs to open? That's how I like to work.

    I don't have anymore details to add!

    Leliforever, cheek you list of installed add-ons, the Ask toolbar can be installed without the users knowledge.
    For checking other extensions that may cause this, follow the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Command Tab not pulling up open windows from Dock

    Sorry if this is covered elsewhere, though I have looked:
    Using Command-Tab to invoke Application Switch is very helpful. However I have an issue with iCal and with AddressBook sometimes. If they have an open window, minimised to the dock, it does not jump up on switching. Other apps do; just switching with command-tab to that app pulls up the most recent window. With iCal/AddressBook, it switches to the app; but the window remains in the dock and needs a click before it jumps up. Which kind of negates the app-switch in the first place, if you need to follow through with a mouse-click as well.
    A similar question was asked here:
    http://discussions.apple.com/thread.jspa?messageID=1424140
    Thanks for your help.
    PowerMac G4 2x1G MDD; PB G4 1G   Mac OS X (10.4.3)  

    Alastair,
    I believe that behavior can be attributed to any application with one minimized window. I get around that limitation by using the Hide feature. For example, just use the Address Book>Hide Address Book (⌘+H) command instead of Minimize (⌘+M). Using Apple + Tab will then open the Address Book application window as you would expect.
    You can use the Keyboard to access a minimized window, but it is not convenient. (Control + F3) will give you access to the Dock. Then use the arrow keys to navigate to the Dock icon of your choice and hit enter. That action will open the application or window of your choice. Esc will cancel the keyboard action.
    ;~)

  • Why did I have to enable Windows File Sharing to share files between two Mavericks iMacs?

    File Sharing failed between my Mavericks iMacs.  The console logs showed that the target iMac saw the ntlmv2 protocol as unknown to the kdc.  I fixed it by enabling Windows File Sharing on the target Mavericks iMac.  I had tried disabling SMB on both iMacs and leaving AFP on, but then nothing happened when I tried to connect.  Why did I have to enable Windows File Sharing to share files between two Mavericks iMacs?

    When you enable file sharing you need to have either SMB (Windows) or AFP (historically Apple-native) file sharing checked. The default in Mavericks is SMB, and not AFP.
    If you uncheck both, then the system will turn off file sharing. Apple supports the use of both SMB and AFP connections in Mavericks, so with only AFP enabled you should have been able to establish a connection, but there could be a small bug or configuration-specific snafu that you're encountering.
    With AFP enabled only, try pressing Command-K in the Finder to open the Connect To Server dialogue, and in here enter the address to the system using afp:// as the protocol, such as the following (the name can be looked up in the Sharing system preferences):
    afp://my_imac.local

  • Safari history will not clear with open windows

    I clear my history on Safari but I found the history doesn't really clear if i have other open windows in safari. Everything in the history bar disappears but when you type in URL in a new window, it will predict from a history that should be erased. I do have a workaround.....I have to close all safari windows, clear history, and that gets everything. I would like to not have to close all windows. This just started happening a month or so ago after I upgraded. Any plans to fix this?

    The reason you have a clear history button is so history will be cleared It is not clearing if other windows are open.
    Correct. It does not clear if other windows are open. This is how all browsers work.
    No other browser works that way.
    IE 7.06 tells you you have to close the browser after deleting the history to finish removing the history.

  • Moving between open windows and cursor doesn't work

    I have several open windows from several programs.
    If I click on window 1 in program A, and then click on window 2 in program B, I expect the mac to switch to that window in program B.
    But many times lately, in Tiger, that does not happen. I can click on the window, and the cursor does not work. Nor does the menu bar change. I can go back to window 1 and the cursor still does not work.
    Only when I go to the dock, and click on the program icon does the window and cursor work properly.
    This happens in Tiger. I don't recall having this behavior in any older OS X, OS 9, or other older version either.
    This has happened on my iMac G5 and G4 tower. Is this a known problem?

    This happens since I started using the Mighty mouse on both computers.

  • Sqldeveloper replaces open windows

    Hi.
    I've found a very annoying behavior. When I have several open windows with package sources and trying to open one more package, sqldev sometimes silently replaces one of my open windows with a new one. When the window, which is gonna be replaced, contains unsaved source, I recieve a question "save changes?".
    Maybe this behavior is a matter of some setup options? Have anybody encountered a problem like this?

    There is a configurable limit to how may pl/sql editors are open at once.
    Tools | Preferences | Code Editor | Max Open PL/SQL Editors

Maybe you are looking for