I have a grid with about 100 rows and I need to read each row and send some data to an api web service. The web service returns updated information about that person that I need to update on the grid. I have an array that is my original datasource
<ejs-grid :dataSource="this.excelData.results" height=400> and
changeItem(){
this.excelData.results[5]["Last_Name"] = "SMITH"
var grid = this.$refs.grid.ej2Instances;
grid.dataSource = this.excelData.results;
},
But this does not change what is showing in the grid. Is there a refresh property.
Do you think this is the most efficient way to update the data? 100 rows?