absform.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:1k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.onReady(function() {
  2.     var form = new Ext.form.FormPanel({
  3.         baseCls: 'x-plain',
  4.         layout:'absolute',
  5.         url:'save-form.php',
  6.         defaultType: 'textfield',
  7.         items: [{
  8.             x: 0,
  9.             y: 5,
  10.             xtype:'label',
  11.             text: 'Send To:'
  12.         },{
  13.             x: 60,
  14.             y: 0,
  15.             name: 'to',
  16.             anchor:'100%'  // anchor width by percentage
  17.         },{
  18.             x: 0,
  19.             y: 35,
  20.             xtype:'label',
  21.             text: 'Subject:'
  22.         },{
  23.             x: 60,
  24.             y: 30,
  25.             name: 'subject',
  26.             anchor: '100%'  // anchor width by percentage
  27.         },{
  28.             x:0,
  29.             y: 60,
  30.             xtype: 'textarea',
  31.             name: 'msg',
  32.             anchor: '100% 100%'  // anchor width and height
  33.         }]
  34.     });
  35.     var window = new Ext.Window({
  36.         title: 'Resize Me',
  37.         width: 500,
  38.         height:300,
  39.         minWidth: 300,
  40.         minHeight: 200,
  41.         layout: 'fit',
  42.         plain:true,
  43.         bodyStyle:'padding:5px;',
  44.         buttonAlign:'center',
  45.         items: form,
  46.         buttons: [{
  47.             text: 'Send'
  48.         },{
  49.             text: 'Cancel'
  50.         }]
  51.     });
  52.     window.show();
  53. });