X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/examples/form/contact-form.js diff --git a/examples/form/contact-form.js b/examples/form/contact-form.js new file mode 100644 index 00000000..ff594441 --- /dev/null +++ b/examples/form/contact-form.js @@ -0,0 +1,147 @@ +/* + +This file is part of Ext JS 4 + +Copyright (c) 2011 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. + +*/ +Ext.require([ + 'Ext.form.*' +]); + +Ext.onReady(function() { + + var win; + + function showContactForm() { + if (!win) { + var form = Ext.widget('form', { + layout: { + type: 'vbox', + align: 'stretch' + }, + border: false, + bodyPadding: 10, + + fieldDefaults: { + labelAlign: 'top', + labelWidth: 100, + labelStyle: 'font-weight:bold' + }, + defaults: { + margins: '0 0 10 0' + }, + + items: [{ + xtype: 'fieldcontainer', + fieldLabel: 'Your Name', + labelStyle: 'font-weight:bold;padding:0', + layout: 'hbox', + defaultType: 'textfield', + + fieldDefaults: { + labelAlign: 'top' + }, + + items: [{ + flex: 1, + name: 'firstName', + fieldLabel: 'First', + allowBlank: false + }, { + width: 30, + name: 'middleInitial', + fieldLabel: 'MI', + margins: '0 0 0 5' + }, { + flex: 2, + name: 'lastName', + fieldLabel: 'Last', + allowBlank: false, + margins: '0 0 0 5' + }] + }, { + xtype: 'textfield', + fieldLabel: 'Your Email Address', + vtype: 'email', + allowBlank: false + }, { + xtype: 'textfield', + fieldLabel: 'Subject', + allowBlank: false + }, { + xtype: 'textareafield', + fieldLabel: 'Message', + labelAlign: 'top', + flex: 1, + margins: '0', + allowBlank: false + }], + + buttons: [{ + text: 'Cancel', + handler: function() { + this.up('form').getForm().reset(); + this.up('window').hide(); + } + }, { + text: 'Send', + handler: function() { + if (this.up('form').getForm().isValid()) { + // In a real application, this would submit the form to the configured url + // this.up('form').getForm().submit(); + this.up('form').getForm().reset(); + this.up('window').hide(); + Ext.MessageBox.alert('Thank you!', 'Your inquiry has been sent. We will respond as soon as possible.'); + } + } + }] + }); + + win = Ext.widget('window', { + title: 'Contact Us', + closeAction: 'hide', + width: 400, + height: 400, + minHeight: 400, + layout: 'fit', + resizable: true, + modal: true, + items: form + }); + } + win.show(); + } + + var mainPanel = Ext.widget('panel', { + renderTo: Ext.getBody(), + title: 'Welcome!', + width: 500, + bodyPadding: 20, + + items: [{ + xtype: 'component', + html: 'Thank you for visiting our site! We welcome your feedback; please click the button below to ' + + 'send us a message. We will respond to your inquiry as quickly as possible.', + style: 'margin-bottom: 20px;' + }, { + xtype: 'container', + style: 'text-align:center', + items: [{ + xtype: 'button', + cls: 'contactBtn', + scale: 'large', + text: 'Contact Us', + handler: showContactForm + }] + }] + }); + +});