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: MAUI/TextInputLayout/Assistive-Labels.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,16 +80,17 @@ N> Error validations should be done in the application level.
80
80
81
81
## Character counter
82
82
83
-
Character counter is used when you need to limit the characters. Character limit can be set using the [CharMaxLength](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfTextInputLayout.html#Syncfusion_Maui_Core_SfTextInputLayout_CharMaxLength) property.
83
+
Character counter is used when you need to limit the characters. Character limit can be set using the [CharMaxLength](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfTextInputLayout.html#Syncfusion_Maui_Core_SfTextInputLayout_CharMaxLength) property.The character counter can be enabled by setting the [ShowCharCount]() property to true.
84
84
85
85
{% tabs %}
86
86
87
87
{% highlight xaml %}
88
88
89
89
<inputLayout:SfTextInputLayout Hint="Password"
90
-
CharMaxLength="8"
90
+
ShowCharCount="true"
91
+
CharMaxLength="20"
91
92
ContainerType="Outlined"
92
-
HelperText="Enter 5 to 8 characters">
93
+
HelperText="Enter 5 to 20 characters">
93
94
<Entry />
94
95
</inputLayout:SfTextInputLayout>
95
96
@@ -100,7 +101,8 @@ Character counter is used when you need to limit the characters. Character limit
100
101
101
102
SfTextInputLayout inputLayout = new SfTextInputLayout();
0 commit comments