Hi,
I am trying to modify the column values using setDataAtCell(). But its failing.
this.hot.updateSettings(){
cells:this.highlightCheckboxCells
}
highlightCheckboxCells = (row,col,prop) =>{
var column = prop.split(".")[0];
var value = this.hot.getDataAtCell(row, column) != null ? this.hot.getDataAtCell(row, column).value : null;
if(value != null && this.objMap.has(column)){
const keys = Array.from(this.objMap.keys());
for(let key of keys){
var selObj = Array.from(this.objMap.get(key));
selObj.forEach(selValue=>{
if(selValue['value'] == value){
this.hot.setDataAtCell(row,col,false);==> after setting the values, it should get the next column, but its keep on getting same column again and again.
}
});
}
}
}