I have integrated the data grid component along with toolbar. I am now able to add, edit, delete rows from the datagrid. But how to save this changes?
I am working on Vue.js.
The :toolbarClick="toolbarClick" callback is getting triggered.
I can detect the click as well using,
toolbarClick (args) {
if (args.item.text === 'Save') {
console.log('update the datagrid - ', this)
}
}
Here I want the fetch the updated JSON so that I can save it on my db. Please let us know.