Completed
Last Updated: 06 Feb 2024 14:30 by ADMIN
Release [R1 2024] PI 1
Created by: Robert
Comments: 0
Category: Drawer
Type: Bug Report
0

Describe the bug
Currently only item template is supported and the user can't add custom components instead of items

Expected behavior
The user is able to add templates for the header for the footer and all the content of the drawer.

Temporary workaround is to use one dummy item and its template - https://stackblitz.com/edit/lfvpga?file=src%2Fmain.vue

Unplanned
Last Updated: 19 Jun 2023 12:05 by John
Created by: John
Comments: 0
Category: Drawer
Type: Feature Request
0

The Navigation Drawers of Vuetify have the Expand on hover configuration which will be a very nice feature for the Kendo UI for Vue Drawer component. 

Can you consider the implementation of an equivalent of the mentioned above configuration property? 

Completed
Last Updated: 07 Jun 2023 12:20 by ADMIN

Describe the bug
When we have an Input component that is used inside a Drawer, once the Input's text is selected, a JS error is thrown.

To Reproduce

  1. Open this StackBlitz example
  2. Click the "Magnifier" icon
  3. Enter random text inside the Input
  4. Select the text inside the Input

Expected behavior
The selection of the text inside the Input should not trigger any errors

Unplanned
Last Updated: 13 Mar 2023 12:43 by Pete

In a scenario where we want to use the Drawer as a navigational component, the best solution from an accessibility perspective would be to add role="navigation" to the Drawer's items and role="main" to the Drawer's content.

The current implementation of the Drawer provides the option to define the discussed role for its content using the following code:

<DrawerContent role="main">
  <router-view />
</DrawerContent>

In the current implementation of the Drawer, the only way we can define a role for its items is through a Javascript code like the following one.

document
  .querySelector('.k-widget.k-drawer')
  .setAttribute('role', 'navigation');

Providing a way to configure the role of the Drawer's items will be a useful feature for the component.

 

 

Unplanned
Last Updated: 09 Mar 2023 14:40 by ADMIN
Scheduled for R2 2023 - Increment 1 (01.03.2023)
Created by: Phuong
Comments: 0
Category: Drawer
Type: Bug Report
0

Describe the bug
The wrapper element of the Drawer's navigation items has a title attribute that should not be presented in the DOM

To Reproduce

  1. Open this StackBlitz example
  2. Move the mouse over the Drawer's menu

Expected behavior
No tooltip/title should be presented in the DOM element of the Drawer's Items

Screenshots
image

Completed
Last Updated: 09 Feb 2022 07:52 by ADMIN
Created by: TMM
Comments: 2
Category: Drawer
Type: Feature Request
5

Hi,

I'm interested in using Drawer for our project, but the current docs only seem to show that it's natively supported with jQuery. I know I can still use it on my Vue project with lots of jQuery usage, but I just wanted to confirm if Drawer is available or not with a vue wrapper to be able to continue with  my component more elegantly.

And if it does not exist yet, I would like to request a new feature for a Kendo UI Vue wrapper available for the Drawer module.

Cheers,

Mark