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
stkyCells should be initialzed after tr.sticky-false is removed from the stkyHdr. Right now this is initialized before that call is made resulting in strange behavior.
Fix is simply to move the call below the .remove() like so:
stkyHdr.find('tr.sticky-false').remove();
var stkyCells = stkyHdr.find('tr').children();
The text was updated successfully, but these errors were encountered:
Thanks for catching this problem! But, because of the changes I've been making to the sticky header widget, I'm just going to change the definition of stkyCells:
stkyCells should be initialzed after tr.sticky-false is removed from the stkyHdr. Right now this is initialized before that call is made resulting in strange behavior.
Fix is simply to move the call below the .remove() like so:
The text was updated successfully, but these errors were encountered: