Success! Looks like we've fixed this one. According to our records the fix was applied for EXTJSIV-5518 in 4.1.
  1. #1
    Sencha User mysticav's Avatar
    Join Date
    Mar 2007
    Location
    Mexico
    Posts
    423
    Vote Rating
    5
    mysticav is on a distinguished road

      0  

    Default Grid mask is shown above Window on Ext.4.1b3

    Grid mask is shown above Window on Ext.4.1b3


    I have an open Ext.window.Window above an Ext.grid.Panel.

    Loading the Ext.grid.Panel store adds a loading mask to the grid body as expected, but the mask is shown above the Ext Window.

    Didn't happen on b2
    Using Ext with cachefly
    Working on LAMPExt

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,629
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Thanks for the report. Her eis my test case, I drag the window over the panel and hit the button in the window to mask the panel and it is above the window.

    Code:
    var panel = new Ext.panel.Panel({
        renderTo : document.body,
        width    : 400,
        height   : 400,
        title    : 'Test'
    });
    
    var window = new Ext.window.Window({
        width    : 200,
        height   : 200,
        title    : 'Window',
        autoShow : true,
        items    : [
            {
                xtype   : 'button',
                text    : 'Mask',
                handler : function() {
                    panel.setLoading(true);
                }
            }
        ]
    });
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User mysticav's Avatar
    Join Date
    Mar 2007
    Location
    Mexico
    Posts
    423
    Vote Rating
    5
    mysticav is on a distinguished road

      0  

    Default


    Hi,

    The problem is back again in Ext JS 4.1.1 (GA)

    Please check.
    Using Ext with cachefly
    Working on LAMPExt