Skip to content

Textarea

Introduction

The Textarea defines a multi-line text input control. A text area can hold an unlimited number of characters.

Description

  • MAMBA_DOCUMENTATION_TODO - fix correct Data Feautures

Data

Types

Features

Types

Feature Description
Mask String Converts input to a specific format
Max Length Defines the max length of characters
Auto Size Resize the Textarea in order the input fit the new dimentions of the Control
Read Only Textarea is not editable
Required If the Textarea is empty the Form is not valid
Update bindings while typing
Doews Not Make Form Dirty Does not enable the Make Dirty indicator

Caution

If you have ckecked Required and there is an action Execute only if Form is valid the next Error will appear
![TextArea required Error] (/assets/images/controls/input/textarea/required_msg.png)

Example

Ide

![TextArea Ide] (/assets/images/controls/input/textarea/textarea_ide.png)

Result

TextArea Result

Back to top