Provide a how-to example or a support option that allows using both a left and a right Drawer at the same time.
Thanks
When the Drawer component is in "mini" view, please add an option that enables the following behavior:
Here is a page where the menu does have the described behavior: http://skote-v-light.codeigniter.themesbrand.com/
And here is a screenshot for quick preview of the idea:
Hi,
Please provide similar functionality to Material's BreakpointObserver:
https://material.angular.io/cdk/layout/api#BreakpointObserver
that will allow changing the default options of the Drawer automatically based on the screen size.
Thank you
Hi,
It will be nice to have an option for the Drawer to expand on top of the content without applying a grey overlay.
Currently, it can be done by using the overlay mode and removing the `k-overlay` class:
https://stackblitz.com/edit/angular-chk7uw?file=src%2Fapp%2Fapp.component.ts
In the Hierarchical drawer, there should be a way to programmatically collapse or expand the drawer items.
Being able to manually trigger the `isItemExpanded` check would be helpful in this. The conditions that make an item expanded could be changed and then the check triggered. For example, if the callback is:
isItemExpanded: DrawerItemExpandedFn = (item): boolean => {
return this.expandedIndices.indexOf(item.id) >= 0;
}
Dear team,
in one of our projects, we use the Hierarchical Drawer with icons, as shown in https://www.telerik.com/kendo-angular-ui/components/layout/drawer/hierarchical-drawer/.
This Drawer is collapsible, and I am aware that there is the possibilty to create a Mini view by using:
[mini]="true"
[miniWidth]="80"
as shown here: https://www.telerik.com/kendo-angular-ui/components/layout/drawer/hierarchical-drawer/#toc-using-hierarchical-data.
What our customer has requested, is a collapsing behavior, which - in the mini-view - leaves only the icons of the menu entry, just like in the "normal" drawer (https://www.telerik.com/kendo-angular-ui/components/layout/drawer/), but with hierarchical data.
Are there currently any plans to support such a behavior?
Thanks in advance,
Felix
It would be helpful if drawer items had a simple "title" property to add tooltips. It would be easier to recognize actions in mini mode.
I know that it's possible to achieve this by adding a template for each item, a tooltip property would just make things a lot easier.