X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/form/vbox-form.js diff --git a/examples/form/vbox-form.js b/examples/form/vbox-form.js index 13595ce4..31689eeb 100644 --- a/examples/form/vbox-form.js +++ b/examples/form/vbox-form.js @@ -1,59 +1,59 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license */ -Ext.onReady(function() { - var form = new Ext.form.FormPanel({ - baseCls: 'x-plain', - labelWidth: 55, - url: 'save-form.php', - layout: { - type: 'vbox', - align: 'stretch' // Child items are stretched to full width - }, - defaults: { - xtype: 'textfield' - }, - - items: [{ - xtype: 'combo', - store: ['test@example.com', 'someone-else@example.com' ], - plugins: [ Ext.ux.FieldReplicator, Ext.ux.FieldLabeler ], - fieldLabel: 'Send To', - name: 'to' - },{ - plugins: [ Ext.ux.FieldLabeler ], - fieldLabel: 'Subject', - name: 'subject' - }, { - xtype: 'textarea', - fieldLabel: 'Message text', - hideLabel: true, - name: 'msg', - flex: 1 // Take up all *remaining* vertical space - }] - }); - - var w = new Ext.Window({ - title: 'Compose message', - collapsible: true, - maximizable: true, - width: 750, - height: 500, - minWidth: 300, - minHeight: 200, - layout: 'fit', - plain: true, - bodyStyle: 'padding:5px;', - buttonAlign: 'center', - items: form, - buttons: [{ - text: 'Send' - },{ - text: 'Cancel' - }] - }); - w.show(); +Ext.onReady(function() { + var form = new Ext.form.FormPanel({ + baseCls: 'x-plain', + labelWidth: 55, + url: 'save-form.php', + layout: { + type: 'vbox', + align: 'stretch' // Child items are stretched to full width + }, + defaults: { + xtype: 'textfield' + }, + + items: [{ + xtype: 'combo', + store: ['test@example.com', 'someone-else@example.com' ], + plugins: [ Ext.ux.FieldReplicator, Ext.ux.FieldLabeler ], + fieldLabel: 'Send To', + name: 'to' + },{ + plugins: [ Ext.ux.FieldLabeler ], + fieldLabel: 'Subject', + name: 'subject' + }, { + xtype: 'textarea', + fieldLabel: 'Message text', + hideLabel: true, + name: 'msg', + flex: 1 // Take up all *remaining* vertical space + }] + }); + + var w = new Ext.Window({ + title: 'Compose message', + collapsible: true, + maximizable: true, + width: 750, + height: 500, + minWidth: 300, + minHeight: 200, + layout: 'fit', + plain: true, + bodyStyle: 'padding:5px;', + buttonAlign: 'center', + items: form, + buttons: [{ + text: 'Send' + },{ + text: 'Cancel' + }] + }); + w.show(); }); \ No newline at end of file