fabiojpoli
29 Oct 2010, 4:29 PM
Good afternoon everyone,
I know that in the show () of a window, if I put modal: true in this window, tdo the bottom of this application will be blocked. How would I specify? Type, block all background application, but do not block the Window "Help" if it is open.
If you did not like, would like a suggestion.
I have to lock the bottom of the application, but if the window "Help" system is open, it will be useful for the window that was open window (eg registration). Therefore, I want it (help window) accessible to the user.
I'm trying to like the code below, but sometimes a window blocks the Help window and sometimes it works.
var Ajuda = Ext.extend(Ext.Window,{
$depends: [strPastaUx + 'Ext.ux.tree.TreeFilterX', strPastaUx + 'Ext.ux.tree.RemoteTreePanel'],
layout: 'border',
title : 'Ajuda',
height : 400,
width : 600,
iconCls : 'silk-question',
constrainHeader: true,
closeAction: 'hide',
border: false,
manager: new Ext.WindowGroup({zseed: 10000}),
resizable: false,
...
Thanks!
I know that in the show () of a window, if I put modal: true in this window, tdo the bottom of this application will be blocked. How would I specify? Type, block all background application, but do not block the Window "Help" if it is open.
If you did not like, would like a suggestion.
I have to lock the bottom of the application, but if the window "Help" system is open, it will be useful for the window that was open window (eg registration). Therefore, I want it (help window) accessible to the user.
I'm trying to like the code below, but sometimes a window blocks the Help window and sometimes it works.
var Ajuda = Ext.extend(Ext.Window,{
$depends: [strPastaUx + 'Ext.ux.tree.TreeFilterX', strPastaUx + 'Ext.ux.tree.RemoteTreePanel'],
layout: 'border',
title : 'Ajuda',
height : 400,
width : 600,
iconCls : 'silk-question',
constrainHeader: true,
closeAction: 'hide',
border: false,
manager: new Ext.WindowGroup({zseed: 10000}),
resizable: false,
...
Thanks!