Example of Default Functionalities in ASP.NET MVC TextArea Control
This example demonstrates the default functionalities of the TextArea
control. Type a character in the TextArea element or focus-in to the TextArea for floating the label text. The label will be positioned back to TextArea on focus-out without value.
DEMO
SOURCE
Outlined and Filled
Please leave a comment
Validation States
A TextArea is an input element that allows users to input multiple lines of text. It can be used for editing or displaying text data.
Types | Description |
---|---|
Outlined & Filled textarea | You can render the following two types of text fields in the material theme by adding e-outline and e-filled class to cssClass API.
|
Default TextArea |
You can render textarea by adding class as e-input. You can also render textarea as group by adding
parent element with e-input-group class added.
|
Validation states |
You can apply validation states success, warning, error to the textarea with the corresponding classes added
to the input element such as e-success, e-warning, e-error.
|