プロパティ メソッド イベント コンフィグオプション ダイレクトリンク
Observable
  Component
    BoxComponent
      Field
        TextField
          TextArea

Ext.form.TextAreaクラス

パッケージ:Ext.form
定義ファイル:TextArea.js
クラス:Ext.form.TextArea
継承元:TextField
xtype:textarea
複数行テキストフィールド。 従来のtextareaフィールドと直接取り替えて使用することが可能で、そしてオートサイズに対するサポートを追加します。
Multiline text field. Can be used as a direct replacement for traditional textarea fields, plus adds support for auto-sizing.

コンフィグオプション

コンフィグオプション定義クラス
 allowDomMove : Boolean
コンポーネントをレンダリングする時に、DOMノードの移動を許可するかのフラグです(初期値 false)。
Whether the component can move the Dom node when rendering (defaults to true).
Ext.Component
 blankText : String
allowBlankのチェックを通過しなかった場合に表示するテキストを設定します (初期値 'This field is required')。
The error text to display if the allowBlank validation fails (defaults to 'This field is required')
Ext.form.TextField
 cls : String
フィールドの基本的な要素に適用するカスタムされたCSSクラスを設定します(初期値 "")。
A custom CSS class to apply to the field's underlying element (defaults to "").
Ext.form.Field
 disableKeyFilter : Boolean
trueを設定した場合、入力されたキーのフィルタリングを無効します(初期値 false)。
Specify true to disable input keystroke filtering (defaults to false)
Ext.form.TextField
 disabledClass : String
コンポーネントが無効になったときに、コンポーネント追加されるCSSクラスを設定します(初期値 'x-item-disabled')。
CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
Ext.Component
 enableKeyEvents : Boolean
trueを設定した場合、HTML入力フィールドへの入力時にもキーイベント(keydown、keyup、keypress)を発生させます(初期値 false)。
true to enable the proxying of key events for the HTML input field (defaults to false)
Ext.form.TextField
 fieldClass : String
フィールドのデフォルトCSSクラスを設定します(初期値 "x-form-field")。
The default CSS class for the field (defaults to "x-form-field")
Ext.form.Field
 focusClass : String
フィールドがフォーカスが受けたときに使用されるCSSクラスを設定します(初期値 "x-form-focus")。
The CSS class to use when the field receives focus (defaults to "x-form-focus")
Ext.form.Field
 grow : true
trueに設定した場合、このフィールドが内容によって自動的に拡大/縮小します(初期値 false)。
true if this field should automatically grow and shrink to its content (defaults to false)
Ext.form.TextField
 hidden : Boolean
コンポーネントを隠します(初期値 false)。 trueの場合、内部でhideメソッドがコールされます。
Render this component hidden (default is false). If true, the hide method will be called internally.
Ext.Component
 invalidClass : String
フィールドが無効であるマークを付けるときに使用するCSSクラスを設定します(初期値 "x-form-invalid")。
The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
Ext.form.Field
 invalidText : String
メッセージではなく、フィールドが無効であるマークを付けるときに使用されるエラーテキストを設定します(初期値 'The value in this field is invalid')。
The error text to use when marking a field invalid and no message is provided (defaults to "The value in this field is invalid")
Ext.form.Field
 maskRe : RegExp
一致しないキーストロークに対してフィルタリングするために使用される正規表現を設定します(初期値 null)。
An input mask regular expression that will be used to filter keystrokes that do not match (defaults to null)
Ext.form.TextField
 minLength : Number
許可する最小文字長さを入力フィールドに設定します(初期値 0)。
Minimum input field length required (defaults to 0)
Ext.form.TextField
 msgFx : String
実験的 フィールドの下で妥当性チェックメッセージを表示するときにエフェクトを使用します(初期値 'normal')。
Experimental The effect used when displaying a validation message under the field (defaults to 'normal').
Ext.form.Field
 pageX : Number
配置コンテナの中に含まれる場合の、このコンポーネントのページレベルでのx座標を設定します。
The page level x coordinate for this component if contained within a positioning container.
Ext.BoxComponent
 pageY : Number
配置コンテナの中に含まれる場合の、このコンポーネントのページレベルでのy座標を設定します。
The page level y coordinate for this component if contained within a positioning container.
Ext.BoxComponent
 preventMark : String
trueに設定した場合、に無効マークを付けることを停止します。初期値はfalseです。
true to disable marking the field invalid. Defaults to false.
Ext.form.Field
 selectOnFocus : Boolean
trueに設定した場合、フィールドが入力時のフォーカスを受けたとき、自動的にフィールドの既存のテキストを選択状態にします(初期値 false)。
true to automatically select any existing field text when the field receives input focus (defaults to false)
Ext.form.TextField
 stripCharsRe : RegExp
JavaScriptの正規表現オブジェクトを使用して、妥当性チェックの前に値として望ましくない内容を取り除きます(初期値 null)。
A JavaScript RegExp object used to strip unwanted content from the value before validation (defaults to null).
Ext.form.TextField
 validateOnBlur : Boolean
trueに設定した場合、フィールドのフォーカスを失ったときに妥当性チェックします(初期値 true)
Whether the field should validate when it loses focus (defaults to true).
Ext.form.Field
 validationDelay : Number
ユーザの入力が終わってから妥当性チェックが開始するまでの時間を見降り秒で設定します(初期値 250)。
The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
Ext.form.Field
 validationEvent : String/Boolean
フィールドの妥当性チェックを開始するイベントを設定します(初期値 'keyup')。自動的にチェックが開始されないようにするためにはfalseを設定します。
The event that should initiate field validation. Set to false to disable automatic validation (defaults to "keyup").
Ext.form.Field
 value : Mixed
このフィールドを初期化したときにセットされるvalue属性値を設定します。
A value to initialize this field with (defaults to undefined).
Ext.form.Field
 vtype : String
Ext.form.VTypesで定義したvtype名を設定します(初期値 null)。
A validation type name as defined in
Ext.form.VTypes (defaults to null)
Ext.form.TextField
 x : Number
配置コンテナの中に含まれる場合の、このコンポーネントのローカルでのx(左)座標を設定します。
The local x (left) coordinate for this component if contained within a positioning container.
Ext.BoxComponent
 y : Number
配置コンテナの中に含まれる場合の、このコンポーネントのローカルでのy(上)座標を設定します。
The local y (top) coordinate for this component if contained within a positioning container.
Ext.BoxComponent

プロパティ

プロパティ定義クラス
 disabled : Boolean
読み取り専用です。このコンポーネントが無効の場合はtrueが設定されます。
True if this component is disabled. Read-only.
Ext.Component
 hidden : Boolean
このコンポーネントが隠れている場合はtrueが設定されます。読み取り専用です。
True if this component is hidden. Read-only.
Ext.Component
 initialConfig : Object
このコンポーネントの初回に設定された指定。読み取り専用です。
This Component's initial configuration specification. Read-only.
Ext.Component
 rendered : Boolean
このコンポーネントがレンダリングされている場合はtrueが設定されます。読み取り専用です。
True if this component has been rendered. Read-only.
Ext.Component

メソッド

メソッド定義クラス

イベント

イベント定義クラス