Use the modal config:
var myWindow = Ext.create("Ext.Window",{
width : 200
,height: 200
,title : 'Crear Usuario'
,layout: 'absolute'
,closable : true
,modal:true // here
}).show();
Resources:
http://stackoverflow.com/questions/6053847/how-to-make-a-full-modal-window-in-ext-4
var myWindow = Ext.create("Ext.Window",{
width : 200
,height: 200
,title : 'Crear Usuario'
,layout: 'absolute'
,closable : true
,modal:true // here
}).show();
Resources:
http://stackoverflow.com/questions/6053847/how-to-make-a-full-modal-window-in-ext-4
No comments:
Post a Comment