DesktopWindow modal renderto whole page ?

  1. #1

    DesktopWindow modal renderto whole page ?

    Hi Friends =)

    I having probrems to set a DesktopWindow in modal mode sets to the whole page,

    Is there any way to set the DesktopWindow in modal mode to the whole page including the start button ? to avoid the users does clicks to the start button while the modal window is on !


    thanks in advance! =)
  2. #2
    Hi,

    I can suggest the following Show listener as a solution.
    <ext:DesktopWindow ID="DesktopWindow1" runat="server" Title="DesktopWindow">
        <Listeners>
            <Show Handler="var mask = Ext.getBody().mask();
                            mask.applyStyles('z-index: 9012;');" />
        </Listeners>
    </ext:DesktopWindow>
  3. #3
    its works ok!! thanks!!

    Quote Originally Posted by Daniil View Post
    Hi,

    I can suggest the following Show listener as a solution.
    <ext:DesktopWindow ID="DesktopWindow1" runat="server" Title="DesktopWindow">
        <Listeners>
            <Show Handler="var mask = Ext.getBody().mask();
                            mask.applyStyles('z-index: 9012;');" />
        </Listeners>
    </ext:DesktopWindow>
  4. #4
    It is not working in IE 8 when the compatibility mode is on, because the mask is over the desktopwindow =( I need the desktopwindows to be over the mask and the mask over the whole page including the start button

    is there an other solution ?

    thanks in advance!

    Quote Originally Posted by Daniil View Post
    Hi,

    I can suggest the following Show listener as a solution.
    <ext:DesktopWindow ID="DesktopWindow1" runat="server" Title="DesktopWindow">
        <Listeners>
            <Show Handler="var mask = Ext.getBody().mask();
                            mask.applyStyles('z-index: 9012;');" />
        </Listeners>
    </ext:DesktopWindow>
  5. #5
    Unfortunately, any IE compatibility modes are not officially supported.

Similar Threads

  1. [CLOSED] Modal desktopwindow and event mask
    By CSG in forum 1.x Legacy Premium Help
    Replies: 12
    Last Post: Nov 24, 2011, 9:03 PM
  2. Replies: 2
    Last Post: Feb 15, 2011, 8:24 PM
  3. Replies: 1
    Last Post: Aug 17, 2010, 10:07 PM
  4. [CLOSED] Display modal while grid/page loads
    By bfolger in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 26, 2009, 7:05 PM
  5. Replies: 1
    Last Post: May 17, 2009, 6:06 PM

Posting Permissions