[CLOSED] Select components outside modal window to be unblocked

  1. #1

    [CLOSED] Select components outside modal window to be unblocked

    Hi,

    I have a window which works like Windows "start menu" in my application. I want to set it as modal. The problem is that if i set the window as modal, a toolbar which is below it, that should not be blocked, gets blocked.

    Is there any way i can configure controls not to be blocked, or implement it using javascript?


    Follows image for better understanding;

    Attached Thumbnails Click image for larger version. 

Name:	Suporte.jpg 
Views:	30 
Size:	88.9 KB 
ID:	15881  
    Last edited by Daniil; Nov 04, 2014 at 1:37 PM. Reason: [CLOSED]
  2. #2
    Hi @josegarcia,

    Unfortunately, there is no such the functionality built-in.

    You can review the Window's JavaScript sources how the modal mask works. Then you could try to set Modal="false" and show your own mask as needed.
  3. #3
    Thanks, i achieved the desired result re-implementing manually the setting of the mask and reducing from it?s size the size of my toolbar (43):

                Ext.getBody().addClass('x-body-masked');
                winSystems.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true) - 43);
                winSystems.mask.show();
    I managed also to change the color of the mask, with css, but could not find anything related to the opacity.
    Could you give me any hint on how to control the opacity of the mask?
  4. #4
    I would try CSS opacity options.

Similar Threads

  1. [CLOSED] components in window do not display
    By luorog in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 29, 2013, 11:56 AM
  2. components in window do not display
    By luorog in forum 2.x Help
    Replies: 1
    Last Post: Jul 29, 2013, 1:43 AM
  3. [CLOSED] Window modal IE7
    By cwolcott in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Nov 08, 2012, 10:16 AM
  4. Replies: 5
    Last Post: Apr 20, 2012, 6:20 AM
  5. [CLOSED] Ext.Window: Question about clicking outside a modal Window
    By nhg_itd in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 07, 2012, 6:00 AM

Posting Permissions