Manuel Berfelde
Manuel Berfelde
3x ``` you mean ``` ;)
``` New-HTML -TitleText 'Software' -UseCssLinks:$true -UseJavaScriptLinks:$true -FilePath C:\inetpub\wwwroot\reports\software\softwareoverview\softwareoverview.html { New-HTMLTab -TabName 'Licensed Software' { New-HTMLContent { New-HTMLTable -DataTable ($licensedSoftware | Select-Object Name,Version,Publisher,Computername,InstallDate,Collected) -PagingOptions @(100, 200) -Filtering -FilteringLocation Top } }...
ah, that's better
looking good - thanks!
Conditional row highliting would indeed be awesome. Just like alternating row colors and highliting on hover.
- alternating row colors - row highlighting on hover - font size and padding
The default is not showing format localized for Germany (24h format, German names for Days/Months). Getting a 24h format is simple enough (-DateTimeFormat "YY.MM.DD HH:mm:ss") but I dont know how...
It's not only the singular thing. For grids you define the properties and headers in New-UDGrid while for Tables it is split up. Here headers are defined in New-UDTable while...
On the other hand the Table-Style seems more consistent with the Powershell approach of splitting up data production and data formating/displaying.
I could see a case where you get data from different sources which you want to match up by using different properties on out-tabledata but same headers on new-udtable. Edit:...