Class fvaswing.components.forms.FvStringAreaField

Description

Textarea form field.

Allow user to place a textarea field into form.
Email validation is done using StringValidator validator.
You can customize validation using FvStringAreaField() constructor.

Example

   var areaField : FvStringAreaField = new FvStringAreaField( "Message", 1, 255 );
 

Field Index

DEFAULT_AREA_ROWS

Method Index

new FvStringAreaField()

Inherited from FvStringField

Inherited from FvFormField

Constructor Detail

FvStringAreaField

public function FvStringAreaField(label:String, rows:Number, minLength:Number, maxLength:Number)

Constructor.

Parameters

labelField caption
rowsNumber of rows for textarea component
minLengthMinimum length for password value
maxLengthMaximum length for password value

Field Detail

DEFAULT_AREA_ROWS

static public DEFAULT_AREA_ROWS:Number
Default rows value for created JTextArea component.