stickyHeader icon indicating copy to clipboard operation
stickyHeader copied to clipboard

cell with padding

Open GoktugOzturk opened this issue 8 years ago • 1 comments

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 avatar Jun 16 '16 11:06 GoktugOzturk

@GoktugOzturk in my case: cellWidths[i] = $(headerCells[i]).width(); replace for cellWidths[i] = $(headerCells[i]).outerWidth();

rafaeldesign avatar Jul 05 '17 16:07 rafaeldesign