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

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.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.     enterIsSpecial : false,
  30.     /**
  31.      * @cfg {Boolean} preventScrollbars <tt>true</tt> to prevent scrollbars from appearing regardless of how much text is
  32.      * in the field. This option is only relevant when {@link #grow} is <tt>true</tt>. Equivalent to setting overflow: hidden, defaults to 
  33.      * <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.removeNode(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.     
  72.     // private
  73.     doAutoSize : function(e){
  74.         return !e.isNavKeyPress() || e.getKey() == e.ENTER;
  75.     },
  76.     /**
  77.      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
  78.      * This only takes effect if grow = true, and fires the {@link #autosize} event if the height changes.
  79.      */
  80.     autoSize: function(){
  81.         if(!this.grow || !this.textSizeEl){
  82.             return;
  83.         }
  84.         var el = this.el,
  85.             v = Ext.util.Format.htmlEncode(el.dom.value),
  86.             ts = this.textSizeEl,
  87.             h;
  88.             
  89.         Ext.fly(ts).setWidth(this.el.getWidth());
  90.         if(v.length < 1){
  91.             v = "&#160;&#160;";
  92.         }else{
  93.             v += this.growAppend;
  94.             if(Ext.isIE){
  95.                 v = v.replace(/n/g, '&#160;<br />');
  96.             }
  97.         }
  98.         ts.innerHTML = v;
  99.         h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
  100.         if(h != this.lastHeight){
  101.             this.lastHeight = h;
  102.             this.el.setHeight(h);
  103.             this.fireEvent("autosize", this, h);
  104.         }
  105.     }
  106. });
  107. Ext.reg('textarea', Ext.form.TextArea);