stickyHeader
stickyHeader copied to clipboard
cell with padding
There is a resizing problem when header cells contains padding. for the jquery version; cellWidths[i] = $(headerCells[i]).width(); should be cellWidths[i] = $(headerCells[i]).innerWidth();
@GoktugOzturk in my case: cellWidths[i] = $(headerCells[i]).width(); replace for cellWidths[i] = $(headerCells[i]).outerWidth();