In Kendo UI Grid for jQuery we have the following:
"editable": {
"createAt": "bottom"
}
How it can be done in Kendo Grid for Vue.JS ?
----------------------------------------------------------------------------------------------------------------------------------
In Grid(Wrapper) in UI for Vue, the editable-create-at is not changing Grid's "add new row" behavior when it is set to "bottom".
A workaround that could be applied is to use :editable="{createAt:'bottom'}"
instead of :editable-create-at="bottom"
The new rows are being added to the bottom of the Grid with :editable-create-at="bottom"
configuration applied.
When :editable-create-at="bottom"
is applied the new records in the Grid should be added to its bottom