Hi,
I have handson table which has around 20 columns and no.of records. I want to push entire table at once. Please help.
Currently I am writing below code. But it is having multiple records and performance hit while update. means If I tried to change 10 columns for one record. It is storing 10 records in dataobject.
this.check(this.hotTable11.getDataAtRow(row[0][0]), this.changedDataBefore)
var dataObj = this.prepareData(this.hotTable11.getDataAtRow(row[0][0]), this.columnsBefore);
if (dataObj[‘Parameter’] != ‘’ && dataObj[‘Parameter’] != null) {
this.changedDataBefore.push(dataObj);
this.commonService.setChangedDataBefore(this.changedDataBefore);
//console.log(this.changedData);
}