File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -72,22 +72,27 @@ You can customize the [above-listed default adaptive breakpoints](#rendering-spe
7272
73731 . Wrap the content of the ` <TelerikRootComponent> ` (` @Body ` and potentially other elements) in ` <ChildContent> ` tag.
74741 . 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
You can’t perform that action at this time.
0 commit comments