Ниже типичный код для создания окна в ExtJS. Все подробности в документации За окна в ExtJS отвечает класс Ext.window.Window
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Ext.onReady(function(){ var window = Ext.create('Ext.window.Window', { x:300,y:50, title: 'My First Window in ExtJS', width: 500, height: 400, maximizable: true, bodyPadding:'10px', autoScroll: true, closeAction: 'hide', //Содержимое не удаляется по закрытии items:[{ x:200, y:50, xtype: 'button', text: 'Click here', //style:'margin-left:100px; margin-top:70px;', listeners:{ click:function(){alert('You have just clicked button on the window');} } }] }); window.show(); }); |