Posted 8 July 2021, 8:34 am EST
I have a simple use case where I have added validation in the sheet but when I export and import that sheet back again, all validations are lost
Please let me know if anything is missing here
const jsonOptions = {
ignoreFormula: false,
ignoreStyle: false,
frozenColumnsAsRowHeaders: true,
frozenRowsAsColumnHeaders: true,
doNotRecalculateAfterLoad: false
};
const serializationOption = {
ignoreFormula: false,
ignoreStyle: false,
rowHeadersAsFrozenColumns: true,
columnHeadersAsFrozenRows: true,
doNotRecalculateAfterLoad: false
};
I am using these options to serialize and deserialize, I have added validations like
NumberValidator, DateValidator
but when I export this workbook and import it back then i see validations are gone!!
