Hi Novel,Thanks for contacting Syncfusion support.Query #1: Please help me to convert Grid DataBinding from typescript to ES6Before we proceeding with this query could you please explain more about your requirement. This will help us to provide the solution for this issue as early as possible.Query #2: how to use Edit TemplateFrom this query we found that you want to use cell edit template feature in the Grid. We have already discussed about this topic in our help documentation. So please refer the below documentation link for more details,Query #3: when clicked Save button will call ajax/axios methodIf you have used “Normal” editing or dialog editing in Grid, then you can use Grid actionBegin event to send the ajax call while saving the records. If you have used “Batch” editing in Grid then we suggest to use beforeBatchSave event of the Grid to send the ajax call while saving the edited records.Documentation for actionBegin event: https://ej2.syncfusion.com/vue/documentation/api/grid/#actionbeginDocumentation for beforeBatchSave event: https://ej2.syncfusion.com/vue/documentation/api/grid/#beforebatchsaveRegards,Kuralarasan M
var grid = document.getElementById("Grid").ej2_instances[0];
var ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
ajax.send();
ajax.onSuccess = function (data) {
grid.dataSource = JSON.parse(data);
}; |