Layout two fiels in one row : Form Layout « Ext JS « JavaScript DHTML






Layout two fiels in one row

  
<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>
<body>
<script type="text/javascript">
Ext.onReady(function() {

    var panel1 = {
      xtype  : 'form',
      title  : 'Form Panel',
      border      : false,
      anchor      : '100%',
      defaultType : 'field',
      items  : [
        {
          fieldLabel : 'First',
          name       : 'firstName'
        },
        {
          fieldLabel : 'Middle',
          name       : 'middle'
        },
        {
          fieldLabel : 'Last',
          name       : 'lastName'
        },
        {
          fieldLabel : 'Address',
          name       : 'address'
        },
        {
          fieldLabel : 'City',
          name       : 'city'
        },
        {
          xtype       : 'container',
          border      : false,
          layout      : 'column',
          anchor      : '100%',
          defaultType : 'field',
          items       : [
            {
              xtype  : 'container',
              layout : 'form', 
              width  : 170,
              items  : [
                {
                  xtype      : 'textfield',
                  fieldLabel : 'State',
                  name       : 'state',
                  anchor     : '-20'
                }
              ]
            
            },
            {
              xtype       : 'container',
              layout      : 'form',
              columnWidth : 1,
              labelWidth  : 20,
              items       : [
                {
                  xtype      : 'textfield',
                  fieldLabel : 'Zip',
                  anchor     : '-10',
                  name       : 'zip'
                  
                }      
              ]
            }
                  
          ]
        
        }
      ]
    }
    
    new Ext.Window({
      width        : 600,
      height       : 600,
      title        : 'Accordion window',
      layout       : 'accordion',
      border       : false,
      layoutConfig : {
        animate : true
      },
      items : [panel1]
    }).show();
});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
    
  








Related examples in the same category

1.Align two forms
2.Layout form, form set and tab panel in a window
3.Layout fieldset Container as hbox
4.Layout fieldset Container as vbox
5.Wrap two forms into a field set container
6.Set control x/y position
7.Use form layout to layout the controls on a window
8.Layout field controls in a single column
9.Multi-Column form control layout
10.Set form column to 3
11.Set layout vertical to true
12.Set form layout column width
13.Add column header to column
14.Set columnWidth
15.Use autoHeight and autoWidth to dynamically size to fit it's data and columns.