Posted 1 February 2021, 7:41 am EST
Dear Wijmo Team,
When trying to enter 0 into an empty cell that is from type Number or Float, the cell stays empty. After writing a different number (something between 1-9) into the cell, writing 0 into the cell is possible.
It seems that the problem really is writing 0 into a new empty cell.
My newItemCreator looks basically like this:
this.data.newItemCreator = () => {
let newItem = ...;
newItem.content = this.attributes[j].datatyp === this.Datatype.BOOLEAN ? false : '',
return newItem
}
Am I doing something wrong here?
Best regards
Moritz