You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blazor/textarea/events.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -31,33 +31,33 @@ The TextArea component triggers the [Created](https://help.syncfusion.com/cr/bla
31
31
## Input event
32
32
33
33
The TextArea component triggers the [Input](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Input) each time when the value of TextArea has changed. This event provides users with an opportunity to perform actions in response to real-time changes in the TextArea's content.
34
-
The [InputEventArgs](../api/textbox/InputEventArgs/) passed as an event argument provides the details about the input event in the TextArea.
34
+
The [TextAreaInputEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.TextAreaInputEventArgs.html) passed as an event argument provides the details about the input event in the TextArea.
The TextArea component triggers the [Change](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Change) event when the content of TextArea has changed and gets focus-out. This event provides users with an opportunity to execute specific actions in response to changes made by the user.
52
-
The [ChangedEventArgs](../api/textbox/ChangedEventArgs/) passed as an event argument provides the details about the changes in the TextArea's value.
51
+
The TextArea component triggers the [ValueChange](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_ValueChange) event when the content of TextArea has changed and gets focus-out. This event provides users with an opportunity to execute specific actions in response to changes made by the user.
52
+
The [TextAreaValueChangeEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.TextAreaValueChangeEventArgs.html) passed as an event argument provides the details about the changes in the TextArea's value.
@@ -67,15 +67,15 @@ The [ChangedEventArgs](../api/textbox/ChangedEventArgs/) passed as an event argu
67
67
## Focus event
68
68
69
69
The TextArea component triggers the [Focus](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Focus) when the TextArea gains focus. This event allows developers to execute specific actions when the user interacts with the TextArea by focusing on it.
70
-
The [FocusInEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_FocusInEventArgs/) passed as an argument provides details about the focus event in the TextArea.
70
+
The [TextAreaFocusInEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.TextAreaFocusInEventArgs.html) passed as an argument provides details about the focus event in the TextArea.
@@ -85,15 +85,15 @@ The [FocusInEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.I
85
85
## Blur event
86
86
87
87
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 [FocusOutEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_FocusOutEventArgs/) passed as an argument provides details about the blur event in the TextArea.
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.
Copy file name to clipboardExpand all lines: blazor/textarea/styles-appearance.md
+31-30Lines changed: 31 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ By adding these classes, users can choose between a filled or outline appearance
89
89
{% endhighlight %}
90
90
{% endtabs %}
91
91
92
-
>Note: Filled and Outline theme customization are available only with Material themes.
92
+
>Note: Filled and Outline theme customization are available only with Material and Material3 themes.
93
93
94
94
## Custom styling with CssClass property
95
95
@@ -108,12 +108,12 @@ By utilizing the `CssClass` API, users can apply custom CSS classes to the TextA
108
108
109
109
## Setting the disabled state
110
110
111
-
To disable the TextArea, you can utilize the [Enabled](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Inputs.SfTextArea.html#Syncfusion_Blazor_Inputs_SfTextArea_Enabled) property. When set to `false`, the TextArea becomes disabled, preventing user interaction. Please find the demo link [here](https://blazor.syncfusion.com/demos/textarea/api?theme=fluent).
111
+
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).
112
112
113
113
{% tabs %}
114
114
{% highlight razor %}
115
115
116
-
<SfTextAreaPlaceholder='Enter your comments'Enabled="false" ></SfTextArea>
116
+
<SfTextAreaPlaceholder='Enter your comments'Disabled="true" ></SfTextArea>
117
117
118
118
{% endhighlight %}
119
119
{% endtabs %}
@@ -141,9 +141,17 @@ Render the TextArea with `rounded corner` by adding the `e-corner` class to the
141
141
{% tabs %}
142
142
{% highlight razor %}
143
143
144
-
<divclass="e-corner">
145
-
<SfTextArea Placeholder='Enter your comments'></SfTextArea>
146
-
</div>
144
+
<SfTextAreaPlaceholder='Enter your comments'CssClass="e-corner"></SfTextArea>
145
+
146
+
{% endhighlight %}
147
+
{% endtabs %}
148
+
149
+
{% endhighlight %}
150
+
{% highlight cshtml tabtitle="Css" %}
151
+
152
+
.e-input-group.e-corner {
153
+
border-radius: 4px;
154
+
}
147
155
148
156
{% endhighlight %}
149
157
{% endtabs %}
@@ -200,8 +208,7 @@ You can customize the TextArea styles such as background-color, text-color and b
200
208
201
209
/* To change the background-color and text-color for textarea */
0 commit comments