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

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.form.Hidden
  3.  * @extends Ext.form.Field
  4.  * A basic hidden field for storing hidden values in forms that need to be passed in the form submit.
  5.  * @constructor
  6.  * Create a new Hidden field.
  7.  * @param {Object} config Configuration options
  8.  * @xtype hidden
  9.  */
  10. Ext.form.Hidden = Ext.extend(Ext.form.Field, {
  11.     // private
  12.     inputType : 'hidden',
  13.     // private
  14.     onRender : function(){
  15.         Ext.form.Hidden.superclass.onRender.apply(this, arguments);
  16.     },
  17.     // private
  18.     initEvents : function(){
  19.         this.originalValue = this.getValue();
  20.     },
  21.     // These are all private overrides
  22.     setSize : Ext.emptyFn,
  23.     setWidth : Ext.emptyFn,
  24.     setHeight : Ext.emptyFn,
  25.     setPosition : Ext.emptyFn,
  26.     setPagePosition : Ext.emptyFn,
  27.     markInvalid : Ext.emptyFn,
  28.     clearInvalid : Ext.emptyFn
  29. });
  30. Ext.reg('hidden', Ext.form.Hidden);