Skip to content

Commit 4b03ae1

Browse files
authored
Merge pull request #2780 from syncfusion-content/871738-Asp-UG
2 parents 0319bbe + cf6fc24 commit 4b03ae1

17 files changed

+44
-1
lines changed

ej2-asp-core-mvc/textarea/floating-label.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ The floating label functionality in the TextArea control allows the placeholder
4242
{% endtabs %}
4343
{% endif %}
4444

45+
Output be like the below.
46+
47+
![textarea](./images/textarea-float-label.png)
48+
4549
## Placeholder with localization
4650

4751
Localization library allows to localize the placeholder text of the TextArea to different cultures using the `Locale` property.
@@ -69,6 +73,10 @@ Localization library allows to localize the placeholder text of the TextArea to
6973
{% endtabs %}
7074
{% endif %}
7175

76+
Output be like the below.
77+
78+
![textarea](./images/textarea-localization1.png)
79+
7280
To load translation object in an application use `load` function of `L10n` class.
7381
In the below sample, `German` culture is loaded to the TextArea placeholder text.
7482

ej2-asp-core-mvc/textarea/form-support.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ This integration enhances the usability of forms, allowing users to provide deta
3838
{% endtabs %}
3939
{% endif %}
4040

41+
Output be like the below.
42+
43+
![textarea](./images/textarea-form.png)
44+
4145
# Integration of ##Platform_Name## TextArea control with FormValidator component
4246

4347
TextArea control seamlessly integrates with the `FormValidator` component, allowing users to incorporate textarea inputs into form validation processes efficiently.
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

ej2-asp-core-mvc/textarea/max-length.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,8 @@ You can enforce a maximum length limit for the text input in the TextArea using
3939
{% endtabs %}
4040
{% endif %}
4141

42+
Output be like the below.
43+
44+
![textarea](./images/textarea-maxLength.png)
45+
4246
When the user reaches the specified limit, the TextArea prevents further input, ensuring compliance with the defined character limit. This feature helps maintain data integrity and provides users with clear feedback on the allowed input length.

ej2-asp-core-mvc/textarea/resize.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ The TextArea allows users to input and edit large amounts of text. Resizing this
4343
{% endtabs %}
4444
{% endif %}
4545

46-
4746
## Width of ##Platform_Name## TextArea control
4847

4948
You can easily customize the width of the TextArea using the [Width](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_Width) property. This property allows precise adjustment of the TextArea's width according to the specific layout requirements of the application.

ej2-asp-core-mvc/textarea/rows-columns.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@ The `rows`attribute determines the initial visible number of lines within the Te
3939
{% endhighlight %}
4040
{% endtabs %}
4141
{% endif %}
42+
43+
Output be like the below.
44+
45+
![textarea](./images/textarea-rowscols.png)

ej2-asp-core-mvc/textarea/style-appearance.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ By applying these classes, users can easily customize the appearance of the Text
4444

4545
{% endif %}
4646

47+
Output be like the below.
48+
49+
![textarea](./images/textarea-sizing.png)
50+
4751
## Filled and Outline mode
4852

4953
The Filled and Outline modes can be enabled in the TextArea component by adding the `e-outline` or `e-filled` class to the [CssClass](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_CssClass) API.
@@ -73,6 +77,10 @@ By adding these classes, users can choose between a filled or outline appearance
7377

7478
{% endif %}
7579

80+
Output be like the below.
81+
82+
![textarea](./images/textarea-filledOutlined.png)
83+
7684
>Note: Filled and Outline theme customization are available only with Material themes.
7785
7886
## Custom styling with cssClass API in TextArea
@@ -177,6 +185,10 @@ To display a static clear button in the TextArea component, you can add the `e-s
177185

178186
{% endif %}
179187

188+
Output be like the below.
189+
190+
![textarea](./images/textarea-static-clear.png)
191+
180192
## Customize the TextArea background color and text color
181193

182194
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.
@@ -205,6 +217,10 @@ You can customize the TextArea styles such as background-color, text-color and b
205217

206218
{% endif %}
207219

220+
Output be like the below.
221+
222+
![textarea](./images/textarea-color.png)
223+
208224
## Change the floating label color of the TextArea
209225

210226
You can change the floating label color of the TextArea for both `success` and `warning` validation states by applying the following CSS styles.
@@ -251,6 +267,10 @@ You can change the floating label color of the TextArea for both `success` and `
251267

252268
{% endif %}
253269

270+
Output be like the below.
271+
272+
![textarea](./images/textarea-floatLabel-color.png)
273+
254274
## Adding mandatory asterisk to placeholder
255275

256276
To add a mandatory asterisk (*) to the placeholder in the TextArea component, you can utilize CSS to append the asterisk after the placeholder text.
@@ -288,3 +308,7 @@ To add a mandatory asterisk (*) to the placeholder in the TextArea component, yo
288308
{% endtabs %}
289309

290310
{% endif %}
311+
312+
Output be like the below.
313+
314+
![textarea](./images/textarea-asterisk.png)

0 commit comments

Comments
 (0)