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
Currently the freeze function cannot be toggled "on the fly" because when its disabled there are still table cells with the jexcel_freezed class remaining.
Luckily, removing them manually gets the table back to normal.
Here's how I solved it in my code:
// clean up remaining classes which jspreadsheet leaves behind
var frozen_cells = document.querySelectorAll('td.jexcel_freezed');
for (var i = 0; i < frozen_cells.length; i++) {
frozen_cells[i].classList.remove('jexcel_freezed');
}
The text was updated successfully, but these errors were encountered:
Currently the freeze function cannot be toggled "on the fly" because when its disabled there are still table cells with the
jexcel_freezed
class remaining.Luckily, removing them manually gets the table back to normal.
Here's how I solved it in my code:
The text was updated successfully, but these errors were encountered: