[OPEN] [#351] Ext.net.directRequest eventMask parameter - cover entire page

  1. #1

    [OPEN] [#351] Ext.net.directRequest eventMask parameter - cover entire page

    Hi
    I am using following script.

     Ext.net.directRequest({
                url: '@Url.Action("abc", "def")',
                extraParams: { a: JSON.stringify(dt), b: varb },
                eventMask: { showMask: true, msg: "Please wait ..." },
                success: function (form, action) {
                    ...
                    ...
                }
                
            });
    The mask is shown but covers only the current visible part of the page. If I scroll the browser scroll bar the upper and lower part of the page remain unmasked.
    How to cover the entire page.
    Last edited by Daniil; Sep 24, 2013 at 1:01 PM. Reason: [OPEN] [#351]
  2. #2
    Hi @PriceRightHTML5team,

    It is a Sencha bug.
    http://www.sencha.com/forum/showthread.php?173531

    We will try to fix it in Ext.NET. Thank you for the report!

    For now, please:

    1. Add this CSS rule to the page.
    .x-masked {
        overflow: hidden !important;
    }
    2. Use this eventMask configuration.
    eventMask: {
        showMask: true,
        target: "customtarget",
        customTarget: Ext.getBody()
    }
    Created an Issue.
    https://github.com/extnet/Ext.NET/issues/351
  3. #3
    Thanks Daniil,
    following your given steps covers the entire page.
  4. #4
    It has been fixed in the revision #5710. It will go to the next release (planned v2.6).

    Though, the Issue is still open to review in the future if Sencha fixes in their sources.

Similar Threads

  1. [CLOSED] How to present a modal mask spanning the entire page?
    By vadym.f in forum 1.x Legacy Premium Help
    Replies: 10
    Last Post: Feb 01, 2012, 7:23 PM
  2. Window overlay entire Portal page
    By JsonTerre in forum 1.x Help
    Replies: 1
    Last Post: Mar 28, 2011, 11:47 AM
  3. Replies: 2
    Last Post: Sep 16, 2010, 12:42 PM
  4. [CLOSED] Grouping doesn't group entire grid data...just current page.
    By rthiney in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Mar 05, 2010, 2:34 PM
  5. [CLOSED] Move Window in viewport to entire page
    By speedstepmem2 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Dec 06, 2008, 6:48 AM

Tags for this Thread

Posting Permissions