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
Single tab worked fine but when I separated the code into multiple tabs, the HTML page opens on a random tab. That tab will have all table headers aligned properly, but any other tab the table headers are all pushed to the far left while the data remains properly centered.
As soon as you sort any column this fixes the column headers for that table but has to be done for each and every table on that tab.
Single tab worked fine but when I separated the code into multiple tabs, the HTML page opens on a random tab. That tab will have all table headers aligned properly, but any other tab the table headers are all pushed to the far left while the data remains properly centered.
As soon as you sort any column this fixes the column headers for that table but has to be done for each and every table on that tab.
The code for that particular section is,
New-HTMLTab -TabName "Msol" -TabHeading $ReportTitleDate -IconBrands microsoft {
New-HTMLSection -Name "O365 User Stats" -BackgroundColor DarkGray -CanCollapse -HeaderBackGroundColor Gray {
New-HTMLSection -Name 'O365 Users' -HeaderTextAlignment left -CanCollapse -HeaderBackGroundColor MediumVioletRed -BackgroundColor Lavender {
New-htmlPanel {
new-htmlTable -DataTable $O365UsersTable -DisableResponsiveTable -HideFooter -PagingOptions 15, 30, 50 -ScrollX #-ScrollX -ScrollY -ScrollSizeY 300
}
}
}
The text was updated successfully, but these errors were encountered: