- Filled and outline mode
- Custom styling with cssClass API in TextArea
- Setting the disabled state in TextArea
- Set the readonly TextArea
- Set the rounded corner in TextArea
- Static clear button in TextArea
- Customize the TextArea background color and text color
- Change the floating label color of the TextArea
- Adding mandatory asterisk to placeholder
Contact Support
Sizing in Vue TextArea Component
11 Jun 202421 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.
<template>
<div class='wrap'>
<h4> Small Size </h4>
<div className="e-input-group e-small">
<ejs-textarea id="default1" className="e-input" placeholder="Enter your comments"></ejs-textarea>
</div>
<h4> Bigger Size </h4>
<div className="e-input-group e-bigger">
<ejs-textarea id="default2" className="e-input" placeholder="Enter your comments"></ejs-textarea>
</div>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
import { onMounted } from 'vue';
onMounted(() => {
/* To get the Input elements */
let inputElement1 = document.getElementById('default1');
let inputElement2 = document.getElementById('default2');
inputElement1.addEventListener("focus", function () {
this.parentElement.classList.add("e-input-focus");
});
inputElement1.addEventListener("blur", function () {
this.parentElement.classList.remove('e-input-focus');
});
inputElement2.addEventListener("focus", function () {
this.parentElement.classList.add("e-input-focus");
});
inputElement2.addEventListener("blur", function () {
this.parentElement.classList.remove('e-input-focus');
});
});
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<h4> Small Size </h4>
<div className="e-input-group e-small">
<ejs-textarea id="default1" className="e-input" placeholder="Enter your comments"></ejs-textarea>
</div>
<h4> Bigger Size </h4>
<div className="e-input-group e-bigger">
<ejs-textarea id="default2" className="e-input" placeholder="Enter your comments"></ejs-textarea>
</div>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
},
mounted: function () {
/* To get the Input elements */
let inputElement1 = document.getElementById('default1');
let inputElement2 = document.getElementById('default2');
inputElement1.addEventListener("focus", function () {
this.parentElement.classList.add("e-input-focus");
});
inputElement1.addEventListener("blur", function () {
this.parentElement.classList.remove('e-input-focus');
});
inputElement2.addEventListener("focus", function () {
this.parentElement.classList.add("e-input-focus");
});
inputElement2.addEventListener("blur", function () {
this.parentElement.classList.remove('e-input-focus');
});
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
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 component, aligning with the design aesthetics of their application.
<template>
<div class='wrap'>
<label className="custom-input-label"> Filled TextArea </label>
<div id='container'>
<ejs-textarea id='filled' placeholder="Filled" floatLabelType="Auto" cssClass="e-filled"></ejs-textarea>
</div>
<label className="custom-input-label"> Outlined TextArea </label>
<div id='container1'>
<ejs-textarea id='outlined' placeholder="Outlined" floatLabelType="Auto" cssClass="e-outline"></ejs-textarea>
</div>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<label className="custom-input-label"> Filled TextArea </label>
<div id='container'>
<ejs-textarea id='filled' placeholder="Filled" floatLabelType="Auto" cssClass="e-filled"></ejs-textarea>
</div>
<label className="custom-input-label"> Outlined TextArea </label>
<div id='container1'>
<ejs-textarea id='outlined' placeholder="Outlined" floatLabelType="Auto" cssClass="e-outline"></ejs-textarea>
</div>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
Note: Filled and Outline theme customization are available only with Material themes.
Custom styling with cssClass API in TextArea
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.
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"
cssClass="custom-textarea"></ejs-textarea>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"
cssClass="custom-textarea"></ejs-textarea>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent,
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
Setting the disabled state in TextArea
To disable the TextArea, you can utilize the enabled property. When set to false
, the TextArea becomes disabled, preventing user interaction.
<template>
<div class ='wrap'>
<div id ='input-container'>
<ejs-textarea id='default' enabled="false"></ejs-textarea>
</div>
</div>
</template>
<script setup>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
components: {
'ejs-textarea': TextAreaComponent
},
data: function() {
return { }
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
Set the readonly TextArea
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.
<template>
<div class ='wrap'>
<div id ='input-container'>
<ejs-textarea id='default' readonly="true" value="Readonly"></ejs-textarea>
</div>
</div>
</template>
<script setup>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
components: {
'ejs-textarea': TextAreaComponent
},
data: function() {
return { }
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
Set the rounded corner in TextArea
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
<template>
<div class="e-input-group e-corner">
<textarea class="e-input" placeholder="Enter your comments"></textarea>
</div>
</template>
Static clear button in TextArea
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.
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" cssClass="e-static-clear"
showClearButton="true"></ejs-textarea>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" cssClass="e-static-clear"
showClearButton="true"></ejs-textarea>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
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.
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"></ejs-textarea>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"></ejs-textarea>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
Change the floating label color of the TextArea
You can change the floating label color of the TextArea for both success
and warning
validation states by applying the following CSS styles.
/* For Success state */
.e-float-input.e-success label.e-float-text,
.e-float-input.e-success input:focus ~ label.e-float-text,
.e-float-input.e-success input:valid ~ label.e-float-text {
color: #22b24b;
}
/* For Warning state */
.e-float-input.e-warning label.e-float-text,
.e-float-input.e-warning input:focus ~ label.e-float-text,
.e-float-input.e-warning input:valid ~ label.e-float-text {
color: #ffca1c;
}
<template>
<div class='wrap'>
<div>
<ejs-textarea id='default1' placeholder="Success" floatLabelType="Auto" cssClass="e-success"></ejs-textarea>
</div>
<div>
<ejs-textarea id='default2' placeholder="Warning" floatLabelType="Auto" cssClass="e-warning"></ejs-textarea>
</div>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<div>
<ejs-textarea id='default1' placeholder="Success" floatLabelType="Auto" cssClass="e-success"></ejs-textarea>
</div>
<div>
<ejs-textarea id='default2' placeholder="Warning" floatLabelType="Auto" cssClass="e-warning"></ejs-textarea>
</div>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
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 */
}
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"></ejs-textarea>
</div>
</template>
<script setup>
import { TextAreaComponent as EjsTextarea } from '@syncfusion/ej2-vue-inputs';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>
<template>
<div class='wrap'>
<ejs-textarea id='default' placeholder="Enter your comments" floatLabelType="Auto"></ejs-textarea>
</div>
</template>
<script>
import { TextAreaComponent } from '@syncfusion/ej2-vue-inputs';
export default {
name: "App",
components: {
"ejs-textarea": TextAreaComponent
},
data: function () {
return {}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-inputs/styles/material.css";
.wrap {
box-sizing: border-box;
margin: 0 auto;
padding: 20px 10px;
width: 340px;
}
</style>