You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
When calling setStyle(), the ignoreHistoryAndEvents option does not work. After checking the worksheet.js file, I noticed that the setStyle function is missing the ignoreHistoryAndEvents parameter.
This argument was removed on version 5, instead of using it, set the value of the worksheet.ignoreHistory property to true before using setStyle and return the value of the worksheet.ignoreHistory property to false right after setStyle.
Hi,
When calling setStyle(), the ignoreHistoryAndEvents option does not work. After checking the worksheet.js file, I noticed that the setStyle function is missing the ignoreHistoryAndEvents parameter.
['setStyle', function(cell, property, value, forceOverwrite, ignoreHistoryAndEvents) {
return setStyle.call(this, cell, property, value, forceOverwrite, ignoreHistoryAndEvents);
}],
After applying this fix and testing, the option works as expected. Please review and consider applying this change.
The text was updated successfully, but these errors were encountered: