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

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.form.TextArea
  9.  * @extends Ext.form.TextField
  10.  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
  11.  * support for auto-sizing.
  12.  * @constructor
  13.  * Creates a new TextArea
  14.  * @param {Object} config Configuration options
  15.  * @xtype textarea
  16.  */
  17. Ext.form.TextArea = Ext.extend(Ext.form.TextField,  {
  18.     /**
  19.      * @cfg {Number} growMin The minimum height to allow when <tt>{@link Ext.form.TextField#grow grow}=true</tt>
  20.      * (defaults to <tt>60</tt>)
  21.      */
  22.     growMin : 60,
  23.     /**
  24.      * @cfg {Number} growMax The maximum height to allow when <tt>{@link Ext.form.TextField#grow grow}=true</tt>
  25.      * (defaults to <tt>1000</tt>)
  26.      */
  27.     growMax: 1000,
  28.     growAppend : '&#160;n&#160;',
  29.     growPad : Ext.isWebKit ? -6 : 0,
  30.     enterIsSpecial : false,
  31.     /**
  32.      * @cfg {Boolean} preventScrollbars <tt>true</tt> to prevent scrollbars from appearing regardless of how much text is
  33.      * in the field (equivalent to setting overflow: hidden, defaults to <tt>false</tt>)
  34.      */
  35.     preventScrollbars: false,
  36.     /**
  37.      * @cfg {String/Object} autoCreate <p>A {@link Ext.DomHelper DomHelper} element spec, or true for a default
  38.      * element spec. Used to create the {@link Ext.Component#getEl Element} which will encapsulate this Component.
  39.      * See <tt>{@link Ext.Component#autoEl autoEl}</tt> for details.  Defaults to:</p>
  40.      * <pre><code>{tag: "textarea", style: "width:100px;height:60px;", autocomplete: "off"}</code></pre>
  41.      */
  42.     // private
  43.     onRender : function(ct, position){
  44.         if(!this.el){
  45.             this.defaultAutoCreate = {
  46.                 tag: "textarea",
  47.                 style:"width:100px;height:60px;",
  48.                 autocomplete: "off"
  49.             };
  50.         }
  51.         Ext.form.TextArea.superclass.onRender.call(this, ct, position);
  52.         if(this.grow){
  53.             this.textSizeEl = Ext.DomHelper.append(document.body, {
  54.                 tag: "pre", cls: "x-form-grow-sizer"
  55.             });
  56.             if(this.preventScrollbars){
  57.                 this.el.setStyle("overflow", "hidden");
  58.             }
  59.             this.el.setHeight(this.growMin);
  60.         }
  61.     },
  62.     onDestroy : function(){
  63.         Ext.destroy(this.textSizeEl);
  64.         Ext.form.TextArea.superclass.onDestroy.call(this);
  65.     },
  66.     fireKey : function(e){
  67.         if(e.isSpecialKey() && (this.enterIsSpecial || (e.getKey() != e.ENTER || e.hasModifier()))){
  68.             this.fireEvent("specialkey", this, e);
  69.         }
  70.     },
  71.     // private
  72.     onKeyUp : function(e){
  73.         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
  74.             this.autoSize();
  75.         }
  76.         Ext.form.TextArea.superclass.onKeyUp.call(this, e);
  77.     },
  78.     /**
  79.      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
  80.      * This only takes effect if grow = true, and fires the {@link #autosize} event if the height changes.
  81.      */
  82.     autoSize: function(){
  83.         if(!this.grow || !this.textSizeEl){
  84.             return;
  85.         }
  86.         var el = this.el;
  87.         var v = el.dom.value;
  88.         var ts = this.textSizeEl;
  89.         ts.innerHTML = '';
  90.         ts.appendChild(document.createTextNode(v));
  91.         v = ts.innerHTML;
  92.         Ext.fly(ts).setWidth(this.el.getWidth());
  93.         if(v.length < 1){
  94.             v = "&#160;&#160;";
  95.         }else{
  96.             v += this.growAppend;
  97.             if(Ext.isIE){
  98.                 v = v.replace(/n/g, '<br />');
  99.             }
  100.         }
  101.         ts.innerHTML = v;
  102.         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin) + this.growPad);
  103.         if(h != this.lastHeight){
  104.             this.lastHeight = h;
  105.             this.el.setHeight(h);
  106.             this.fireEvent("autosize", this, h);
  107.         }
  108.     }
  109. });
  110. Ext.reg('textarea', Ext.form.TextArea);