SpinnerField.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:2k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.ns('Ext.ux.form');
  2. /**
  3.  * @class Ext.ux.form.SpinnerField
  4.  * @extends Ext.form.NumberField
  5.  * Creates a field utilizing Ext.ux.Spinner
  6.  * @xtype spinnerfield
  7.  */
  8. Ext.ux.form.SpinnerField = Ext.extend(Ext.form.NumberField, {
  9.     deferHeight: true,
  10.     autoSize: Ext.emptyFn,
  11.     onBlur: Ext.emptyFn,
  12.     adjustSize: Ext.BoxComponent.prototype.adjustSize,
  13. constructor: function(config) {
  14. var spinnerConfig = Ext.copyTo({}, config, 'incrementValue,alternateIncrementValue,accelerate,defaultValue,triggerClass,splitterClass');
  15. var spl = this.spinner = new Ext.ux.Spinner(spinnerConfig);
  16. var plugins = config.plugins
  17. ? (Ext.isArray(config.plugins)
  18. ? config.plugins.push(spl)
  19. : [config.plugins, spl])
  20. : spl;
  21. Ext.ux.form.SpinnerField.superclass.constructor.call(this, Ext.apply(config, {plugins: plugins}));
  22. },
  23.     onShow: function(){
  24.         if (this.wrap) {
  25.             this.wrap.dom.style.display = '';
  26.             this.wrap.dom.style.visibility = 'visible';
  27.         }
  28.     },
  29.     onHide: function(){
  30.         this.wrap.dom.style.display = 'none';
  31.     },
  32.     // private
  33.     getResizeEl: function(){
  34.         return this.wrap;
  35.     },
  36.     // private
  37.     getPositionEl: function(){
  38.         return this.wrap;
  39.     },
  40.     // private
  41.     alignErrorIcon: function(){
  42.         if (this.wrap) {
  43.             this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
  44.         }
  45.     },
  46.     validateBlur: function(){
  47.         return true;
  48.     }
  49. });
  50. Ext.reg('spinnerfield', Ext.ux.form.SpinnerField);
  51. //backwards compat
  52. Ext.form.SpinnerField = Ext.ux.form.SpinnerField;