0

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?

ReadOnly
  • 354
  • 3
  • 10

2 Answers2

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

In ASP.net MVC

Nijin P J
  • 1,302
  • 1
  • 9
  • 15
0

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

ReadOnly
  • 354
  • 3
  • 10