Skip to content

Commit a50fd23

Browse files
Merge pull request #4657 from Syncfusion-Content/hotfix/hotfix-v26.1.35
DOCINFRA-2341_merged_using_automation
2 parents bf02785 + 5b4ad21 commit a50fd23

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

blazor/listbox/how-to/add-items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Add/Remove Items in Blazor ListBox Component
1111

12-
To add an item or multiple items, `AddItem` method can be used. In the following example, the `Ferrari LaFerrari` and `McLaren P1` items will be added while clicking `Add Items` button.
12+
To add an item or multiple items, [AddItemsAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DropDowns.SfDropDownBase-1.html#Syncfusion_Blazor_DropDowns_SfDropDownBase_1_AddItemsAsync_System_Collections_Generic_IEnumerable__0__System_Nullable_System_Int32__) method can be used. In the following example, the `Ferrari LaFerrari` and `McLaren P1` items will be added while clicking `Add Items` button.
1313

1414
```cshtml
1515
@using Syncfusion.Blazor.DropDowns

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)