Window buttonAlign: 'center' : Window « Ext JS « JavaScript DHTML






Window buttonAlign: 'center'

  
<!--
/*!
 * Ext JS Library 3.0.0
 * Copyright(c) 2006-2009 Ext JS, LLC
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
-->
<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>
</head>

<!-- Revised from demo code in ext3.0.0 -->
<body>
<script type="text/javascript">
/*!
 * Ext JS Library 3.0.0
 * Copyright(c) 2006-2009 Ext JS, LLC
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
Ext.onReady(function() {
    var form = new Ext.form.FormPanel({
        baseCls: 'x-plain',
        layout:'absolute',
        url:'save-form.php',
        defaultType: 'textfield',

        items: [{
            x: 0,
            y: 5,
            xtype:'label',
            text: 'Send To:'
        },{
            x: 60,
            y: 0,
            name: 'to',
            anchor:'100%'  // anchor width by percentage
        },{
            x: 0,
            y: 35,
            xtype:'label',
            text: 'Subject:'
        },{
            x: 60,
            y: 30,
            name: 'subject',
            anchor: '100%'  // anchor width by percentage
        },{
            x:0,
            y: 60,
            xtype: 'textarea',
            name: 'msg',
            anchor: '100% 100%'  // anchor width and height
        }]
    });

    var window = new Ext.Window({
        title: 'Resize Me',
        width: 500,
        height:300,
        minWidth: 300,
        minHeight: 200,
        layout: 'fit',
        plain:true,
        bodyStyle:'padding:5px;',
        buttonAlign:'center',
        items: form,

        buttons: [{
            text: 'Send'
        },{
            text: 'Cancel'
        }]
    });

    window.show();
});
</script> 

</body>
</html>

   
    
  








Related examples in the same category

1.Create a window and set title, width, height and panel
2.Place html to Ext Window
3.Window with animated layout
4.Call show method to display a window
5.Add two panels to a window
6.Collapsible Panel
7.Set window animation target
8.Set window close action to hide
9.Call show to display the window
10.Call close to hide the window
11.Not resizable
12.Not draggable
13.Not closable
14.No border
15.Set window autoscroll to true
16.Dynamically add item to a window
17.Set Window autoScroll to true and anchor size
18.Window layout = anchor
19.Window without border
20.Window anchor size
21.Set window border style
22.Set window label width
23.Set window default field type
24.Fit a panel to a window
25.Set title for a window
26.Set width and height for a window
27.Set item for a window
28.Set layout for a window
29.Create a form control, add to a form and then add the form to the window
30.Set body style for a window
31.Set width, height, minWidth, minHeight for a window
32.Google map window
33.Window: closable, draggable, resizable
34.Plain Window
35.Set only height and width for a window
36.Add html code to a window
37.Add components to a window
38.Add two TextFields to a window
39.Create Ext.form.TextField and add to Window
40.Window with auto height
41.minimizable and maximizable Window
42.Collapsible Window
43.Minimized to Body
44.Create a very simple modal Window with "autoTabs" from existing markup
45.Add top Toolbar, bottom Toolbar and button to a window