Skip to content

Commit f3ed9d6

Browse files
authored
Merge pull request #4653 from syncfusion-content/894698-hotfix
894698: textarea documentation corrections
2 parents c9a62ed + b902568 commit f3ed9d6

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

blazor/textarea/events.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ The [TextAreaValueChangeEventArgs](https://help.syncfusion.com/cr/blazor/Syncfus
5454
```cshtml
5555
@using Syncfusion.Blazor.Inputs
5656
57-
<SfTextArea ValueChange="@ChangeHandler"></SfTextArea>
58-
57+
<SfTextArea ValueChange="@ChangeHandler"></SfTextArea>
5958
@code {
6059
private void ChangeHandler(TextAreaValueChangeEventArgs args)
6160
{
@@ -85,15 +84,15 @@ The [TextAreaFocusInEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.
8584
## Blur event
8685

8786
The TextArea component triggers the [Blur](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Blur) when the TextArea loses focus. This event allows users to execute specific actions when the user interacts with the TextArea by moving focus away from it.
88-
The [TextAreaFocusInEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.TextAreaFocusOutEventArgs.html) passed as an argument provides details about the blur event in the TextArea.
87+
The [TextAreaFocusOutEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.TextAreaFocusOutEventArgs.html) passed as an argument provides details about the blur event in the TextArea.
8988

9089
```cshtml
9190
@using Syncfusion.Blazor.Inputs
9291
9392
<SfTextArea Blur="@BlurHandler"></SfTextArea>
9493
9594
@code {
96-
private void BlurHandler(TextAreaFocusInEventArgs args)
95+
private void BlurHandler(TextAreaFocusOutEventArgs args)
9796
{
9897
// Here you can customize your code
9998
}

blazor/textarea/resize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ You can easily customize the width of the TextArea using the [Width](https://hel
4040
{% endhighlight %}
4141
{% endtabs %}
4242

43-
{% previewsample "https://blazorplayground.syncfusion.com/embed/VZLTjRCACTsLJegK?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor TextArea with Resize](./images/blazor-textarea-resize-width.png)" %}
43+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VZLTjRCACTsLJegK?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor TextArea with Resize](./images/blazor-textarea-resize-width.png)" %}

blazor/textarea/styles-appearance.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ By utilizing the `CssClass` API, users can apply custom CSS classes to the TextA
105105
{% endhighlight %}
106106
{% endtabs %}
107107

108-
109108
## Setting the disabled state
110109

111110
To disable the TextArea, you can utilize the [Disabled](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Disabled) property. When set to `true`, the TextArea becomes disabled, preventing user interaction. Please find the demo link [here](https://blazor.syncfusion.com/demos/textarea/api?theme=fluent).

0 commit comments

Comments
 (0)