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);
};

Completed
Last Updated: 20 Apr 2022 05:08 by ADMIN
Release May 2022
Created by: Andreas
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
0

https://stackblitz.com/edit/gv4uwk?file=src/main.vue

Focus the initial input then press tab
the stepper is focused yet it does not change visually so we know it

expected:
There is a visual initial representation of the focused component

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

Declined
Last Updated: 07 Mar 2022 14:25 by ADMIN
Here is an example:

https://stackblitz.com/edit/nqnhfx-scivtg?file=src%2Fmain.vue 
 


Trying both variations as your documentation is inconsistent on the naming. But neither way gets the views to show times at 15 minute increments. 
Won't Fix
Last Updated: 09 Feb 2022 09:16 by ADMIN

In a scenario when a mouse is connected to an iPad, using the mouse, we cannot switch the states of the Switch component.
If the screen is touched, the Switch is correctly switching position.

Here is a video demonstrating the issue:
kendoswitch-rpreplay-final1635815724-mp4.zip

Completed
Last Updated: 09 Feb 2022 08:48 by ADMIN

Describe the bug

When the Localization and Intl Providers are used in Vue 2 with Composition API, there is an error in the browser's console that appears initially, before any user interaction. The error is "[Vue warn]: Error in data(): "TypeError: ref is not a function"". After this error appears, no matter what values are passed to both the Localization and Intl components, the are not functioning.

To Reproduce

  1. Open this CodeSandbox example
  2. Open the browser's console and see the error.

Expected behavior
The Localization and Intl Providers should work correctly in both options and composition API contexts

Screenshots
image

Completed
Last Updated: 09 Feb 2022 07:26 by ADMIN
Created by: Daniel
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
4
The Editor is one of the most popular components. It will be nice to have it as a Native one.
Completed
Last Updated: 01 Feb 2022 10:15 by ADMIN
Created by: Daniel
Comments: 0
Category: Kendo UI® for Vue
Type: Bug Report
1

Describe the bug

<multiselect
        :data-items="values"
        :value="values"
      ></multiselect>
...
data() {
    return {
      values: [2,3],
    };

select and item
error:

At TagList.js:81
Uncaught (in promise) TypeError: tagData.text.replace is not a function
at Proxy.eval (TagList.js:81:48)
at Array.map ()
at Proxy.render (TagList.js:75:19)
at renderComponentRoot (runtime-core.esm-bundler.js:623:44)
at ReactiveEffect.componentUpdateFn [as fn] (runtime-core.esm-bundler.js:4372:57)
at ReactiveEffect.run (reactivity.esm-bundler.js:195:29)
at setupRenderEffect (runtime-core.esm-bundler.js:4498:9)
at mountComponent (runtime-core.esm-bundler.js:4281:9)
at processComponent (runtime-core.esm-bundler.js:4239:17)
at patch (runtime-core.esm-bundler.js:3843:21)

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 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: 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.
Won't Fix
Last Updated: 14 Dec 2021 07:22 by ADMIN

I try to apply Telerik Scheduler, @progress/kendo-scheduler-vue-wrapper": "^2021.3.110,  in my Vue3 project with Vite but I got an error message, "Dynamic require of kendo.pdf.js is not supported", in the browser console and no calendar show in the web page.


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.

 

Completed
Last Updated: 20 Sep 2021 05:52 by ADMIN
Created by: Al
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0

The Kendo UI for Vue Scheduler Wrapper doesn't support year view which is available in the jQuery suite.

To reproduce the issue follow the below steps:

  1. Open this StackBlitz example
  2. From the DropDownList in the upper right corner select "Year"
  3. Check the console. The following error appears in it:
    image

Expected behavior
The "Year" view should be available in the Kendo UI for Vue Scheduler Wrapper

Completed
Last Updated: 10 Sep 2021 13:53 by ADMIN

The Native NumericTextBox doesn't have the 'k-state-focused' class applied to it, once the component is focused. 

For comparison, the Angular and React versions of the same component get this class applied.

React: https://www.telerik.com/kendo-react-ui/components/inputs/numerictextbox/ 

Angular: https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/ 

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.