Add a TextField to a window by setting the xtype : TextBox « Ext JS « JavaScript DHTML






Add a TextField to a window by setting the xtype

  


<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>
<script type="text/javascript">



Ext.onReady(function(){
  
    var w = new Ext.Window({
      items:[
        { xtype: 'textfield', fieldLabel: 'First Name'},
        new Ext.form.TextField({fieldLabel: 'Surname'})
      ]
    });
    w.show();
});

</script>
<body>
    <div id="mainContent">
    </div>
</body>
</html>

   
    
  








Related examples in the same category

1.Add text box to a window and set the width
2.Set min and max length for a field
3.TextField enter key action listener
4.Not-allow-blank field
5.Set validation type for a textfield
6.Preset value on a textbox
7.Set value for a text field