BootstrapToolbarSettingsAdaptivity.Title Property
Specifies a title applied to the toolbar in the adaptive mode.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A string value that specifies the title. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to Title |
---|---|
BootstrapToolbar |
|
Remarks
<dx:BootstrapToolbar runat="server">
<SettingsAdaptivity Enabled="true" Title="Toolbar title" EnableCollapseRootItemsToIcons="true" MinRootItemsCount="4" />
<Items>
...
</Items>
</dx:BootstrapToolbar>
The adaptive toolbar’s title is never hidden when the container’s width changes. The rest toolbar items respond to the container’s width changes in the following way:
- If EnableCollapseRootItemsToIcons is true, the text of all toolbar items that contain icons are hidden. Additionally, a user can use the item’s AdaptivePriority property to hide a specific item first among others.
- If EnableAutoHideRootItems is true, the toolbar combines root items one by one in the root submenu until the toolbar contains the minimum number of root items (specified in the MinRootItemsCount property).
Note
Refer to the Toolbar - Adaptivity Settings online demo to see this feature in action.
See Also