vbox-form.js
资源名称:ext-3.1.0.zip [点击查看]
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:2k
源码类别:
JavaScript
开发平台:
JavaScript
- /*! * Ext JS Library 3.1.0 * Copyright(c) 2006-2009 Ext JS, LLC * 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();
- });