【发布时间】:2019-07-29 13:09:28
【问题描述】:
我正在为 Vue.JS 使用 Kendo Grid Wrapper,我需要在 Kendo Grid 底部添加新行。
Kendo UI Grid for jQuery 提供 editable.createAt
“可编辑”:{ “createAt”:“底部” }
如何在 vue.js wrapper 中使用上述代码?
【问题讨论】:
我正在为 Vue.JS 使用 Kendo Grid Wrapper,我需要在 Kendo Grid 底部添加新行。
Kendo UI Grid for jQuery 提供 editable.createAt
“可编辑”:{ “createAt”:“底部” }
如何在 vue.js wrapper 中使用上述代码?
【问题讨论】:
.Editable(editable => { editable.DisplayDeleteConfirmation(false); editable.Mode(GridEditMode.InCell).CreateAt(GridInsertRowPosition.Bottom); })
在 ASP.net MVC 中
【讨论】:
这在版本:2019.2.621中是不可能的。我已将其报告为错误,请参阅链接add-new-row-at-bottom-of-kendo-grid-vue-js了解详细信息
【讨论】: