Set value for a text field : TextBox « Ext JS « JavaScript DHTML






Set value for a text field

 <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 myform = new Ext.FormPanel({ url: 'your.php', renderTo: Ext.getBody(), frame: true, title: 'Title', width: 250, items: [ { xtype: 'textfield', fieldLabel: 'Title', name: 'title', allowBlank: false } ] }); myform.getForm().findField('title').setValue('new value'); }); </script> <div id='div1'>asdf</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.Add a TextField to a window by setting the xtype
close