Skip to content

Commit d75de29

Browse files
committed
chore(common):final updates
1 parent 483acbf commit d75de29

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

common-features/adaptive-rendering.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,27 @@ You can customize the [above-listed default adaptive breakpoints](#rendering-spe
7272

7373
1. Wrap the content of the `<TelerikRootComponent>` (`@Body` and potentially other elements) in `<ChildContent>` tag.
7474
1. Add the `<RootComponentSettings>` component inside the [`<TelerikRootComponent>`]({%slug rootcomponent-overview%}).
75-
1. Add the `<AdaptiveSettings>` component inside the `<RootComponentSettings>` tag and configure its properties:
75+
1. Add the `<RootComponentAdaptiveSettings>` component inside the `<RootComponentSettings>` tag and configure its properties:
7676

7777
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
7878

7979
| Parameter | Type | Description |
8080
| ----------- | ----------- | ----------- |
81-
| `Small` | `int` | The min threshold and the lower boundary of the medium threshold |
82-
| `Medium` | `int` | The max threshold and the upper boundary of the medium threshold. |
81+
| `Small` | `int` | The upper boundary of the small threshold. Sets the `max-width` of the small media query in `px`. |
82+
| `Medium` | `int` | The upper boundary of the medium threshold. Sets the `max-width` of the medium media query in `px`.|
8383

8484
>caption Customize the default adaptive breakpoints
8585
8686
<div class="skip-repl"></div>
8787
````RAZOR
88+
@* The below configuration sets the following thresholds:
89+
- Small: 0 to 400px
90+
- Medium: 401px to 900px
91+
- Large: over 900px *@
92+
8893
<TelerikRootComponent>
8994
<RootComponentSettings>
90-
<AdaptiveSettings Small="400" Medium="900"></AdaptiveSettings>
95+
<RootComponentAdaptiveSettings Small="400" Medium="900"></RootComponentAdaptiveSettings>
9196
</RootComponentSettings>
9297
<ChildContent>
9398
@Body

0 commit comments

Comments
 (0)