Sizing in Blazor TextArea Component
23 Jul 20249 minutes to read
you can adjust the size of the TextArea by applying specific classes:
Property | Description |
---|---|
Small | Add the e-small class to the input element or its container to render a smaller-sized TextArea. |
Bigger | Add the e-bigger class to the input element or its container to render a larger-sized TextArea. |
By applying these classes, users can easily customize the appearance of the TextArea to better fit their application’s design requirements.
<div id='container'>
<div class='wrap'>
<div id="input-container">
<h4> Small Size </h4>
<div class="e-small">
<SfTextArea Placeholder="Enter your comments"></SfTextArea>
</div>
<h4> Bigger Size </h4>
<div class="e-bigger">
<SfTextArea Placeholder="Enter your comments"></SfTextArea>
</div>
</div>
</div>
</div>
#loader {
color: #008cff;
font-family: 'Helvetica Neue','calibiri';
font-size: 14px;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
.e-input-group-icon:before {
font-family: e-icons;
}
#input-container .e-input-group { /* csslint allow: adjoining-classes */
margin: 30px 0;
}
#input-container .e-float-input { /* csslint allow: adjoining-classes */
margin: 30px 0;
}
Filled and outline mode
The Filled and Outline modes can be enabled in the TextArea component by adding the e-outline
or e-filled
class to the CssClass API.
By adding these classes, users can choose between a filled or outline appearance for the TextArea control, aligning with the design aesthetics of their application. Please find the demo link here.
<SfTextArea Placeholder='Enter your comments' CssClass= "e-filled" ></SfTextArea>
<SfTextArea Placeholder='Enter your comments' CssClass= "e-outline" ></SfTextArea>
Note: Filled and Outline theme customization are available only with Material and Material3 themes.
Custom styling with CssClass property
The CssClass
Api provides a powerful way to apply custom styling to the TextArea component, allowing users to customize its appearance and layout according to their design requirements.
By utilizing the CssClass
API, users can apply custom CSS classes to the TextArea component’s container, enabling control over its styling properties such as color, padding, margins, borders, and more.
<SfTextArea Placeholder='Enter your comments' CssClass="custom-textarea" ></SfTextArea>
Setting the disabled state
To disable the TextArea, you can utilize the Disabled property. When set to true
, the TextArea becomes disabled, preventing user interaction. Please find the demo link here.
<SfTextArea Placeholder='Enter your comments' Disabled="true" ></SfTextArea>
Set the ReadOnly property
To make the TextArea read-only , you can use the ReadOnly property. When set to true
, it prevents users from editing the content of the TextArea. Please find the demo link here.
<SfTextArea Placeholder='Enter your comments' ReadOnly="true" ></SfTextArea>
Set the rounded corner
Render the TextArea with rounded corner
by adding the e-corner
class to the input parent element.
This rounded corner is visible only in box model input component
<SfTextArea Placeholder='Enter your comments' CssClass="e-corner"></SfTextArea>
.e-input-group.e-corner {
border-radius: 4px;
}
Static Clear Button
To display a static clear button in the TextArea component, you can add the e-static-clear
class to the CssClass
property. This class ensures that the clear button remains visible at all times, providing users with the ability to easily clear the TextArea content without needing to focus on the control. Please find the demo link here.
<SfTextArea Placeholder='Enter your comments' CssClass="e-static-clear" ShowClearButton="true" ></SfTextArea>
Customize the TextArea background color and text color
You can customize the TextArea styles such as background-color, text-color and border-color by overriding its default styles to achieve the desired appearance for the TextArea.
<div id='container'>
<div class='wrap'>
<div id="input-container">
<SfTextArea Placeholder="Enter your comments" ></SfTextArea>
</div>
</div>
</div>
#loader {
color: #008cff;
font-family: 'Helvetica Neue','calibiri';
font-size: 14px;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
/* To change the background-color and text-color for textarea */
.e-input-group,
.e-input-group.e-multi-line-input { /* csslint allow: adjoining-classes */
background : lightgray;
color: green;
}
/* To change the border-color of the textarea */
.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) { /* csslint allow: adjoining-classes */
border-color: #0800ff;
}
Change the floating label color
You can change the floating label color of the TextArea for both success
and warning
validation states by applying the following CSS styles. Please find the demo link here.
/* For Success state */
.e-float-input.e-success textarea ~ label.e-float-text,
.e-float-input.e-success textarea:focus ~ label.e-float-text,
.e-float-input.e-success textarea:valid ~ label.e-float-text {
color: #22b24b;
}
/* For Warning state */
.e-float-input.e-warning textarea ~ label.e-float-text,
.e-float-input.e-warning textarea:focus ~ label.e-float-text,
.e-float-input.e-warning textarea:valid ~ label.e-float-text {
color: #ffca1c;
}
<div id='container'>
<div class='wrap'>
<div id="input-container">
<div>
<SfTextArea id="default1" Placeholder="Success" CssClass="e-success" FloatLabelType="@FloatLabelType.Auto"></SfTextArea>
</div>
<div>
<SfTextArea id="default2" Placeholder ="Warning" CssClass="e-warning" FloatLabelType="@FloatLabelType.Auto"></SfTextArea>
</div>
</div>
</div>
</div>
#loader {
color: #008cff;
font-family: 'Helvetica Neue','calibiri';
font-size: 14px;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
/* For Success state */
#input-container .e-float-input.e-success textarea ~ label.e-float-text,
#input-container .e-float-input.e-success textarea:focus ~ label.e-float-text,
#input-container .e-float-input.e-success textarea:valid ~ label.e-float-text {
color: #22b24b;
}
/* For Warning state */
#input-container .e-float-input.e-warning textarea ~ label.e-float-text,
#input-container .e-float-input.e-warning textarea:focus ~ label.e-float-text,
#input-container .e-float-input.e-warning textarea:valid ~ label.e-float-text {
color: red;
}
Adding mandatory asterisk to placeholder
To add a mandatory asterisk (*) to the placeholder in the TextArea component, you can utilize CSS to append the asterisk after the placeholder text.
/* To add asterick to float label in textarea */
.e-float-input.e-control-wrapper .e-float-text::after {
content: '*'; /* Add asterisk after the placeholder */
color: red; /* Customize asterisk color */
}
<div id='container'>
<div class='wrap'>
<div id="input-container">
<SfTextArea id="default" Placeholder="Enter your comments" FloatLabelType="@FloatLabelType.Auto"></SfTextArea>
</div>
</div>
</div>
#loader {
color: #008cff;
font-family: 'Helvetica Neue','calibiri';
font-size: 14px;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
/* To add asterick to float label in textarea */
.e-float-input.e-control-wrapper .e-float-text::after {
content: '*';
color: red;
}