Skip to content

Commit 10646f4

Browse files
Dimo Dimovjivanova
authored andcommitted
docs(dropdownlist): Improve ValueChanged lambda expression information
1 parent 8c81a98 commit 10646f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/combobox/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article explains the events available in the Telerik ComboBox for Blazor:
2121

2222
The `ValueChanged` event fires upon every change of the user selection. When [custom values]({%slug components/combobox/custom-value%}) are enabled, it fires upon every keystroke, like in a regular `<input>` element.
2323

24-
The examples below use binding to primitive types for brevity, you can use [full models]({%slug components/combobox/databind%}) as well. Make sure to review the [Data Binding - Missing Value or Data]({%slug components/combobox/databind%}#missing-value-or-data) section to provide all necessary parameters to the component if you do so. The type of the argument in the lambda expression must match the type of the `Value` of the component.
24+
The examples below use binding to primitive types for brevity, you can use [full models]({%slug components/combobox/databind%}) as well. Make sure to review the [Data Binding - Missing Value or Data]({%slug components/combobox/databind%}#missing-value-or-data) section to provide all necessary parameters to the component if you do so. The type of the argument in the lambda expression must match the `Value` type of the component, and the `ValueField` type (if `ValueField` is set).
2525

2626
>caption Handle ValueChanged
2727

components/dropdownlist/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ from the model: @MySelectedItem
5858

5959
The `ValueChanged` event fires upon every change of the user selection.
6060

61-
The examples below use [binding]({%slug components/dropdownlist/databind%}) to primitive types for brevity, you can use full models as well.
61+
The examples below use [binding]({%slug components/dropdownlist/databind%}) to primitive types for brevity, you can use full models as well. The type of the argument in the lambda expression must match the `Value` type of the component, and the `ValueField` type (if `ValueField` is set).
6262

6363
>caption Handle ValueChanged
6464

components/multiselect/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article explains the events available in the Telerik MultiSelect for Blazor
1919

2020
## ValueChanged
2121

22-
The `ValueChanged` event fires when the user selection changes (the user adds or removes items).
22+
The `ValueChanged` event fires when the user selection changes (the user adds or removes items). The type of the argument in the lambda expression must match the `Value` type of the component.
2323

2424
>caption Handle ValueChanged
2525

0 commit comments

Comments
 (0)