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/dialog/integration.md
+27-30Lines changed: 27 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@ This article contains the following examples:
19
19
*[Checkbox integration in Dialog](#checkbox-in-a-dialog)
20
20
*[Filter integration in Dialog](#filter-in-a-dialog)
21
21
22
-
## Checkbox in a Dialog
22
+
## CheckBox in a Dialog
23
23
24
-
To integrate the Checkbox in the Dialog:
24
+
To use a CheckBox component in the Dialog:
25
25
26
-
1. Include the [Telerik Checkbox](slug:checkbox-overview) as `DialogContent`.
27
-
1. Set the [`Value` parameter](slug:checkbox-overview#checkbox-parameters) of the Checkbox via two-way binding.
28
-
1. Invoke the Dialog's`Refresh` method in the [`OnChange` event](slug:checkbox-events#onchange) of the Checkbox.
26
+
1. Include the [Telerik CheckBox](slug:checkbox-overview) as `DialogContent`.
27
+
1. Set the [`Value` parameter](slug:checkbox-overview#checkbox-parameters) of the CheckBox with two-way binding.
28
+
1. Invoke the [Dialog `Refresh` method](slug:dialog-overview#dialog-reference-and-methods) in the [CheckBox `OnChange` event](slug:checkbox-events#onchange).
29
29
30
-
>caption Using Checkbox in Dialog
30
+
>caption Using CheckBox in Dialog
31
31
32
32
````RAZOR
33
33
@using Telerik.DataSource
@@ -53,50 +53,47 @@ To integrate the Checkbox in the Dialog:
53
53
54
54
## Filter in a Dialog
55
55
56
-
To integrate the Filter in the Dialog:
56
+
To use a Filter component in the Dialog:
57
57
58
-
1. Include the [Telerik Filter](slug:filter-overview) as `DialogContent`.
59
-
1. Set the [`Value` parameter](slug:filter-overview#filter-parameters) of the Filter via one-way binding.
60
-
1. Invoke the Dialog's `Refresh` method in the [`ValueChanged` event](slug:filter-events#valuechanged) of the Filter.
61
-
1. Update the `Value` parameter of the Filter manually in the `ValueChanged` event of the Filter.
58
+
1. Include the [Telerik Filter](slug:filter-overview) inside `<DialogContent>`.
59
+
1. Set the [`Value` parameter](slug:filter-overview#filter-parameters) of the Filter with one-way binding.
60
+
1. Invoke the [Dialog `Refresh` method](slug:dialog-overview#dialog-reference-and-methods) in the [Filter `OnUpdate` event](slug:filter-events#onupdate).
0 commit comments