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/pager/overview.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,6 @@ The Blazor Pager provides various parameters that allow you to configure the com
80
80
81
81
| Parameter | Type and Default Value | Description |
82
82
| ----------- | ----------- | ----------- |
83
-
|`Adaptive`|`bool` <br /> (`true`) | Defines whether pager elements change based on the screen size. When enabled, the Pager will hide its `Pager Info` and `PageSize Dropdownlist` if they cannot fit in the available space. In the smallest resolution, the page buttons will be rendered as a select element. This parameter will be deprecated in the next major version in favor of the new `Responsive` parameter. |
84
83
|`AdaptiveMode`|`AdaptiveMode` enum <br /> (`None`) | Defines the adaptive mode of the Pager. When set to `Auto`, and the window width is below [`768px` or `RootComponentAdaptiveSettings.Medium`](slug:adaptive-rendering#rendering-specifics), components with popups will render them as an `ActionSheet`. In this case, the page sizes dropdown only. |
85
84
|`ButtonCount`|`int`| The maximum number of page buttons that will be visible. To take effect, `ButtonCount` must be smaller than the page count (`ButtonCount < Total / PageSize`). |
86
85
|`Class`|`string`| Renders a custom CSS class to the `<div class="k-pager-wrap">` element. |
Copy file name to clipboardExpand all lines: components/toolbar/overview.md
+17-19Lines changed: 17 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,9 +82,8 @@ The Blazor ToolBar provides parameters to configure the component:
82
82
83
83
| Parameter | Type | Description |
84
84
| ----------- | ----------- | ----------- |
85
-
|`Adaptive` <br /> (deprecated) |`bool` <br /> (`true`) | Toggles the overflow popup of the ToolBar. The component displays an additional anchor on its side, where it places all items which do not fit and overflow. [Template items](slug:toolbar-templated-item#notes) don't participate in this mechanism and they are always rendered in the ToolBar itself. This parameter is deprecated in favor of `OverflowMode`. |
86
85
|`Class`|`string`| The CSS class to be rendered on the main wrapping element of the ToolBar component, which is `<div class="k-toolbar">`. Use for [styling customizations](slug:themes-override). |
87
-
|`OverflowMode`|`ToolBarOverflowMode` <br /> (`Menu`) |The adaptive mode of the Toolbar. |
86
+
|`OverflowMode`|`ToolBarOverflowMode` <br /> (`Menu`) |Toggles the overflow popup of the ToolBar. The component displays an additional anchor on its side, where it places all items which do not fit and overflow.|
88
87
|`ScrollButtonsPosition`|`ToolBarScrollButtonsPosition` enum <br /> (`Split`) | Specifies the position of the buttons when the ToolBar scroll adaptive mode is enabled. |
89
88
|`ScrollButtonsVisibility`|`ToolBarScrollButtonsVisibility` enum <br /> (`Visible`)| Specifies the visibility of the buttons when the ToolBar scroll adaptive mode is enabled. |
90
89
@@ -112,8 +111,8 @@ The Blazor Toolbar has an option for adaptiveness. This option allows you to hid
0 commit comments