Unplanned
Last Updated: 24 Sep 2020 08:02 by ADMIN
Created by: Wayne Hiller
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
0
Please add official support for parceljs bunder.  https://parceljs.org/
Unplanned
Last Updated: 24 Sep 2020 08:01 by ADMIN

I am using Kendo Vue Wrapper Grid that is editable. I am using the propery 

:editable-create-at="bottom"

but the new rows are always added at the top.

There is another open issue related to this.

https://github.com/telerik/kendo-ui-core/issues/5198

 

Please provide a fix.

 

Completed
Last Updated: 24 Sep 2020 07:59 by ADMIN
Created by: o11an
Comments: 1
Category: Kendo UI® for Vue
Type: Bug Report
0
Just wanted to let you know that the CDN for Kendo Vue native grid suddenly stopped working today, about 1 hour ago. I hade to change @latest in the url to @0.3.4 (it automatically changed to 0.3.5 otherwise, and there's nothing there) to get my dev environment up and running again.
Won't Fix
Last Updated: 24 Sep 2020 07:58 by ADMIN
Created by: sangwon
Comments: 2
Category: Kendo UI® for Vue
Type: Bug Report
0
How can i set visible for custom command?
Duplicated
Last Updated: 24 Sep 2020 07:43 by ADMIN

I am using Keno Grid in my VueJS project. I need to show spinner while loading data into grid. I followed the link https://stackblitz.com/edit/zr8vbd-xk73ps?file=index.html . This display the spinner until data loaded into Vue. How ever when there is no data to display I would like to display No records found message.

My Grid looks like this.  

<Grid :data-items="pageViewModels"
:pageable="true"
:columns="gridData.columns"
:skip="gridData.skip"
:take="gridData.take"
:total="gridData.total"
@pagechange="onPageChange"
@rowclick="onRowClick">
<GridNoRecords>
<div class="k-loading-mask margin-top-100">
<span class='k-loading-text'>
</span>
<div class='k-loading-image'/>
<div class='k-loading-color'/>
</div>
</GridNoRecords>
Unplanned
Last Updated: 12 Aug 2020 06:10 by ADMIN
Created by: Oliver
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1
Situation:

Consider a standard chart with time periods on the x-axis, The most recent period is to the right. If you look at the chart with all periods visible and you zoom in, the chart zooms into the center of the chart. So the most recent period drops out to the right and the older periods to the left. 

 

Request:

Use a property to stick the most recent period to the right, even if you zoom in. Currently the chart zooms into the center. The requested behaviour would be: Keep the right (or left) border and zoom in/out to the left (or right) side. So regardless of the zoom level, the most right (or left) item is allways visible.
Unplanned
Last Updated: 14 Jul 2020 14:05 by ADMIN
Created by: Jim
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1

Hi,


It is possible to display a vertical bar as highlighted in the image, which is in date and time range. This for time stamps not worked. Example for lunch, or not working due to bad weather.

 

Unplanned
Last Updated: 07 Jul 2020 18:23 by Jim
Created by: JangHyen
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
2
Add the option of displaying multiple related tasks on one row in the Gantt chart.
Declined
Last Updated: 23 Jun 2020 02:57 by icq
Created by: icq
Comments: 4
Category: Kendo UI® for Vue
Type: Bug Report
0

I have a kendo wrapper grid with local datasource pointing to vue state.
There is a button "Update" which will update the state so that the grid will be updated as well and it works.

But, if I firstly click the button "Test" (just only a same value assignment to state) and then click "Update", strangely it does not work so the grid has no change.
I finally found out the reason is that after clicked "Test" then "Update", the vue state updated BUT the kendo grid datasource won't (out of sync unexpectedly)
So the temp solution is I have to manually assign the state to the datasource so that the grid will be updated.

Repo: https://stackblitz.com/edit/dqsbeo

My question is why, after clicked 'Test', the kendo grid datasource became cached and out of sync with the vue state?
If I don't click 'Test', they do sync always.
Problem occur only when "same value assignment" to the state. If "different value assignment", no problem.

 

<div id="vueapp">
    <kendo-datasource ref="dsDS" :data="localDataSource"></kendo-datasource>
    <kendo-grid :data-source-ref="'dsDS'">
        <kendo-grid-column :field="'ProductID'"
                           :title="'ID'"
                           :width="40"></kendo-grid-column>
        <kendo-grid-column :field="'ProductName'"></kendo-grid-column>
        <kendo-grid-column :field="'UnitPrice'"
                           :title="'Unit Price'"
                           :width="120"
                           :format="'{0:c}'"></kendo-grid-column>
        <kendo-grid-column :field="'UnitsInStock'"
                           :title="'Units In Stock'"
                           :width="120"></kendo-grid-column>
        <kendo-grid-column :field="'Discontinued'" :width="120"></kendo-grid-column>
    </kendo-grid>
    <input type="button" value="Test" @click="test" />
    <input type="button" value="Update" @click="update" />
</div>

new Vue({
    el: '#vueapp',
    data: {
        localDataSource: [{
                "ProductID": 1,
                "ProductName": "Chai",
                "UnitPrice": 18,
                "UnitsInStock": 39,
                "Discontinued": false,
            },
            {
                "ProductID": 2,
                "ProductName": "Chang",
                "UnitPrice": 17,
                "UnitsInStock": 40,
                "Discontinued": false,
            },
            {
                "ProductID": 3,
                "ProductName": "Aniseed Syrup",
                "UnitPrice": 10,
                "UnitsInStock": 13,
                "Discontinued": false,
            }
        ]
    },
    methods: {
      test: function(e) {
        this.localDataSource = JSON.parse(JSON.stringify(this.localDataSource)); //same value assignment
        console.log('test');
      },
      update: function(e) {
        this.localDataSource.splice(0, 1, this.localDataSource[1]); //replace the first object with second object
      },
    }
})


Completed
Last Updated: 02 Apr 2020 15:52 by ADMIN
Created by: Steven
Comments: 3
Category: Kendo UI® for Vue
Type: Bug Report
0

Type in the Currency field in the example page here https://www.telerik.com/kendo-vue-ui/components/inputs/numerictextbox/formats/

 

After typing in the third digit, caret position moves to the 2nd digit instead of the first or last digit.

Typing in more digits causes the caret to move a position up occasionally.

 

Caret needs to be consistent on its positioning, either staying in the far left, or to the right before the decimal.

Preferably, this should be a prop to configure.

 

Also, tabbing out of the field when there are more than 2 decimal places will not format on leave.

Completed
Last Updated: 12 Feb 2020 12:37 by ADMIN
Created by: n/a
Comments: 2
Category: Kendo UI® for Vue
Type: Feature Request
6
For Vue components, the v-model on a multi-combo box and every component must bind to the underlying object.
:value-primitive="false" doesn't work as per some suggestions.

v-model binding to the underlying object is a MUST HAVE, Top priority, number one with a bullet. Without it, your components are a PITA to use and my current proof of concept might end here and we won't use your components with some bigger projects coming down the line.
Unplanned
Last Updated: 29 Jan 2020 13:43 by ADMIN
Created by: Svetlana
Comments: 1
Category: Kendo UI® for Vue
Type: Feature Request
1

Hi all!.

Are your planning to create native gantt component?

Completed
Last Updated: 24 Jan 2020 11:17 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI® for Vue
Type: Feature Request
2
Do you have a development plan?
1 2 3 4 5 6