When I do this with first cell, everything is fine, with the second - two are updated - the first and the second. If with third - then three. Despite the fact that I always select one cell at a time and I want that setDataAtCell to be applied one at the time. Is it possible?
const afterBeginEditing = (row: number, col: number) => {
document.addEventListener(“keydown”, e => {
const str = e.ctrlKey;
const punkt = e.key;
if (str && punkt === ‘.’) {
const today = new Date();
const date = ${today.getDate()}.${today.getMonth()+1}.${today.getFullYear()}
;
table.value.hotInstance?.setDataAtCell(row, col, date, ‘edit’);
}
})
}