TextArea TagHelper Overview
The Telerik UI TextArea TagHelper for ASP.NET Core is a server-side wrapper for the Kendo UI TextArea widget.
The TextArea provides a set of default API configuration options that can be set during its initialization such as value, placeholder, and so on.
The TextArea is part of Telerik UI for ASP.NET Core, a
professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the TextArea
The following example demonstrates how to define the TextArea by using the TextArea TagHelper.
<kendo-textarea name="description" rows="5">
<label floating="true" content="Description"/>
</kendo-textarea>
<style>
.k-floating-label-container {
width: 100%;
}
</style>
Basic Configuration
The TextArea TagHelper configuration options are passed as attributes of the tag.
<kendo-textarea name="phone_number" placeholder="Name..." value="John Doe"></kendo-textarea>