How to add new row at bottom of Kendo Grid (Vue.JS)?

255 Views Asked by At

I am using Kendo Grid Wrapper for Vue.JS and i need to add new row at bottom of Kendo Grid.

Kendo UI Grid for jQuery provides editable.createAt

"editable": { "createAt": "bottom" }

How the above code can be used in vue.js wrapper?

2

There are 2 best solutions below

0
Nijin P J On
 .Editable(editable => { editable.DisplayDeleteConfirmation(false); editable.Mode(GridEditMode.InCell).CreateAt(GridInsertRowPosition.Bottom); })

In ASP.net MVC

0
ReadOnly On

This is not possible in the version: 2019.2.621.I have reported this as a bug, refer link add-new-row-at-bottom-of-kendo-grid-vue-js for details