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: components/checkbox/events.md
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -150,31 +150,40 @@ The `OnChange` event fires every time the `Value` parameter changes. The key dif
150
150
151
151
## IndeterminateChanged
152
152
153
-
The `IndeterminateChanged` event fires every time the `Indeterminate` parameter changes.
153
+
The `IndeterminateChanged` event fires every time the `Indeterminate` parameter changes. The component does this when the chekbox was indeterminate and the user clicks it to toggle it to a checked/unchecked state. If you toggle the parameter value yourself, the event will not be raised.
154
154
155
155
>caption Handle IndeterminateChanged event
156
156
157
157
````CSHTML
158
-
@*Press the button to toggle the Indeterminate state*@
Copy file name to clipboardExpand all lines: components/checkbox/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ The CheckBox provides the following features:
42
42
*`Value` and `bind-Value`- mapped to the `Checked` property of the normal HTML checkbox
43
43
* The `Value` and `bind-Value` accept `bool` and `bool?` types
44
44
*`Indeterminate` and `bind-Indeterminate` - see the [Indeterminate state]({%slug checkbox-indeterminate-state%}) article for more information and examples
45
-
*`IndeterminateChanged` - see the [CheckBox events]({%slug checkbox-events%}) article for more information and example
45
+
*Events - see the [CheckBox events]({%slug checkbox-events%}) article for more information and examples.
46
46
* Validation - see the [Input Validation]({%slug common-features/input-validation%}) article for more details.
0 commit comments