spinner.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 simple = new Ext.FormPanel({
  3.         labelWidth: 40, // label settings here cascade unless overridden
  4.         frame: true,
  5.         title: 'Simple Form',
  6.         bodyStyle: 'padding:5px 5px 0',
  7.         width: 210,
  8.         defaults: {width: 135},
  9.         defaultType: 'textfield',
  10.         items: [
  11.             new Ext.ux.form.SpinnerField({
  12.                 fieldLabel: 'Age',
  13.                 name: 'age'
  14.             }),
  15.             {
  16.              xtype: 'spinnerfield',
  17.              fieldLabel: 'Test',
  18.              name: 'test',
  19.              minValue: 0,
  20.              maxValue: 100,
  21.              allowDecimals: true,
  22.              decimalPrecision: 1,
  23.              incrementValue: 0.4,
  24.              alternateIncrementValue: 2.1,
  25.              accelerate: true
  26.             }
  27.         ]
  28.     });
  29.     simple.render('form-ct');
  30. });