Unplanned
Last Updated: 03 Nov 2022 07:02 by ADMIN
Scheduled for R1 2023 - Increment 2 (07.12.2022)
Created by: n/a
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug
The rowReorder event is missing in the Wrapper Grid component, while it is available in the Kendo UI for jQuery Grid. Currently, the only way the event can be used is by using a code like the below in the mounted hook of the Vue app:

    var grid = this.$refs.grid.kendoWidget();
    grid.bind('rowReorder', function (e) {
      console.log('row', e);
    });

Expected behavior
The rowReorder event should be available for usage as the other events of the Wrapper Grid

Unplanned
Last Updated: 03 Aug 2022 09:07 by Marcus
Created by: Marcus
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
2

Describe the bug
By default, the Dialog component is a modal window. This means that once the Dialog appears, the page elements are the only ones the users can interact with.

Currently, if you use the keyboard navigation functionality of the Dialog, after pressing the Tab key multiple time, the focus will be on the "Open dialog" button below the modal. This should not happen.

To Reproduce

  1. Open this StackBlitz example
  2. Click on the "Open in new window" button to open the example in a separate window/tab
  3. In the new window, click on the "Open dialog" button
  4. Once the Dialog is opened, press the Tab button 8 times and press Enter
  5. The Dialog will be closed because, after the 8th Enter press, the focus will be again on the "Open dialog" button below the modal area.

Expected behavior
When using the keyboard navigation of the Dialog component, the focus shouldn't be transferred to the elements below the modal area. It should be kept among the elements that are displayed in the Dialog.

Unplanned
Last Updated: 21 Jun 2022 06:26 by ADMIN
Created by: Wesley
Comments: 3
Category: Kendo UI® for Vue
Type: Feature Request
0

When entering a number with decimals in a Native NumericTextBox with a format it rounds up the number if you enter more decimals than the format allows. In this Stackblitz project you can see this behavior.

In the Wrapper NumericTextBox it is possible to add a round property with the value false which prevents the rounding of decimal numbers. Instead of rounding it truncates the number. By my knowledge and what I can find in the Vue documentation this property isn't available in the Native NumericTextBox.

Proposed solution
Add round property with related logic to the native component.

Steps to reproduce

  1. Copy and paste the value 12.345
  2. See that the value in the input becomes 12.35
  3. See that :round="false" does nothing.
Unplanned
Last Updated: 15 Jun 2022 09:40 by Wesley

Describe the bug
When working with the Wrapper DropDownList, if the component uses the v-model directive, there are some white spaces appearing in the popup of the component.

If the component doesn't use the v-model, the described behavior is not replicable.

To Reproduce

  1. Open this StackBlitz example.
  2. Select "Fish"
  3. Select "Pizza"
  4. Repeat steps 2 and 3 multiple times
  5. See the white space in the popup

Expected behavior
No white space should appear in the popup of the DropDownList component.

Screenshots
image

Unplanned
Last Updated: 25 Apr 2022 06:31 by Bruce

We have a window hidden with v show and a DatePicker in it.
When we open the DatePicker and try to hide the Window the popup of the DatePicker stays opened

example and steps in ticket - 1562574

workaround - delay the hiding of the Window with 200 ms to ahve a default hiding of the popup executed:

const toggleDialog = (e) => {
e.preventDefault();
setTimeout(() => {
if (visible.value) {
showPopup.value = false;
}
visible.value = !visible.value;
}, 200);
};

Unplanned
Last Updated: 09 Mar 2022 08:24 by ADMIN
Created by: sitefinitysteve
Comments: 2
Category: Kendo UI® for Vue
Type: Bug Report
0

Describe the bug
When binding the Scheduler Wrapper component to a remote datasource, there are two requests sent to the remote service.

To Reproduce

  1. Open this StackBlitz example and run it.
  2. Open the Network tab of your browser and see the requests

Expected behavior
Only one request should be sent to the remote service

Screenshots
image

Unplanned
Last Updated: 24 Jan 2022 07:43 by ADMIN
Created by: Ashiq
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1

Can you add the Badge component to the Kendo UI for Vue suite?

The Badge is available in the Angular and React suites but is not available for Vue. 

Unplanned
Last Updated: 18 Jan 2022 06:50 by ADMIN
Created by: Ondřej
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1
Having a component like the TaskBar available in the Kendo UI for jQuery will be a useful add-on for the Kendo UI for Vue suite.
Unplanned
Last Updated: 18 Jan 2022 09:09 by ADMIN

When using the Drawer component in Kendo UI for Vue, it expands from the wrong side the first time is it toggled if expanded: false and overlay:true

This can be reproduced on the Display Modes example by clicking Edit in StackBlitz, changing the initial value of expanded from true to false (line 92), and toggling the drawer in overlay mode.

After it has been toggled once, it then expands in the correct direction.

It does work correctly if I use "rtl" direction instead of "ltr".

Unplanned
Last Updated: 25 Nov 2021 11:16 by ADMIN

Describe the bug
When defining a custom editor Template for the Scheduler(wrapper) component we define the value passed to the editable-template property as follows:

editorTemplate(data: any): any {
  return {
    template: EditEventTemplateComponent,
    templateArgs: Object.assign({}, data, {
      parentComponent: schedulerRef.value,
    }),
  };
}

With the above definition, in the EditEventTemplateComponent, the templateArgs cannot be accessed inside the setup function, when the Composition API is used. In the mean time, the templateArgs are accessible in the template of the EditEventTemplateComponent.

To Reproduce

  1. Open this project: sample-scheduler-composition-api.zip
    and install its NPM packaged(npm install)
  2. Start the project(npm run serve)
  3. Double click on one of the events available inside the Scheduler.
  4. Check the console of your browser
    -->

Expected behavior
The templateArgs should be accessible inside the setup function when using Composition API.

  • Possible workaround: Use the classic Options API instead. When we use the Options API, the templateArgs are accessible inside the mounted hook.
Unplanned
Last Updated: 29 Oct 2021 08:52 by ADMIN
Created by: Aleksander
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
2

Hi,

I need to fill and AcroForm PDF. I want to load the pdf and fill it from input fields in kendo vue, when I am done I need to send the pdf back to server or download/print the filled out pdf. 

Unplanned
Last Updated: 21 Sep 2021 12:33 by ADMIN

It will be a nice feature if the Native Grid can support a row selection through the keyboard. 

Example scenario:

  1. Click on a checkbox in the Grid and select a row
  2. Hold the Shift or Ctrl key and press Arrow up or arrow down button

Targeted result: With the press of an arrow button, the row above or below gets selected

Here is a sample project that demonstrates an implementation similar to the targeted one.

 

Unplanned
Last Updated: 09 Sep 2021 05:00 by ADMIN
Created by: John Campion
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
0

Currently in Vue we don't provide the ability to share with the customers the source code before the compilation but just the already compiled code.

We need to provide the ability to fork the repository and build components from the Vue repository similarly to the way it is done in Angular and React

Unplanned
Last Updated: 07 Sep 2021 09:29 by ADMIN
Created by: RATHA
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
1
Add a Native TreeList component to the Kendo UI for Vue Native suite
Unplanned
Last Updated: 30 Aug 2021 11:13 by ADMIN
Created by: js
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
2

Currently, Kendo UI for Vue suite provides export to Excel through the kendo-vue-excel-export package. The Excel export is a nice feature but the CSV export is another functionality that is often used. 

 

 
Unplanned
Last Updated: 13 Aug 2021 12:12 by ADMIN
Created by: Chen Yap
Comments: 3
Category: Kendo UI® for Vue
Type: Feature Request
0

Any roadmap on creating the dock layout like this? I found the similar function for Telerik WPF component


Unplanned
Last Updated: 21 Jul 2021 13:15 by ADMIN
Created by: Al
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi,

Please consider adding a better, native, way to handle the case as described in my post here.

Unplanned
Last Updated: 30 Apr 2021 08:51 by ADMIN
Created by: Peter
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
0
Add a FileManager component to the suite.
Unplanned
Last Updated: 20 Apr 2021 07:58 by ADMIN
Created by: n/a
Comments: 0
Category: Kendo UI® for Vue
Type: Feature Request
0
Add a BreadCrumb component to the Kendo UI for Vue suite. 
Unplanned
Last Updated: 16 Apr 2021 07:29 by ADMIN
Created by: Jeong
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0

Hi. I would like to share  my experience and thought of Kendo for Vue.

I still like and am using Kendo for Vue but here is my feedback :)

I reviewed the Kendo Vue version and made a purchase.
However, as a result of evaluating, there are some areas that are a bit disappointing.
It seemed that there were most of the templates that could be used in jQuery.
Checking with the Vue version, most of the examples and event handling are not written, and there are much information that I have to go and check with jQuery version.
If it is enough description and information about Direct code that can use examples and event handling in Vue version
in detail on the site, it would be much easier to use.

Thank you.