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
After function setColumnHeaderSizes() {
if (clonedHeader.is('tr') || clonedHeader.is('thead')) {
var clonedColumns = clonedHeader.find('th');
header.find('th').each(function (index, column) {
var clonedColumn = $(clonedColumns[index]);
clonedColumn.css( 'width', column.offsetWidth + 'px');
});
}
};
i see that all th have inline styling (). This is not responsive anymore...I want the table to fit in my page....
The text was updated successfully, but these errors were encountered:
After function setColumnHeaderSizes() {
if (clonedHeader.is('tr') || clonedHeader.is('thead')) {
var clonedColumns = clonedHeader.find('th');
header.find('th').each(function (index, column) {
var clonedColumn = $(clonedColumns[index]);
clonedColumn.css( 'width', column.offsetWidth + 'px');
});
}
};
i see that all th have inline styling (). This is not responsive anymore...I want the table to fit in my page....
The text was updated successfully, but these errors were encountered: