Product: PowerShell Universal
Version: 3.2.3
Is it possible to change the data in the row in table from just TEXT to a link to another page in PU ? I cant seem to figure it out.
Product: PowerShell Universal
Version: 3.2.3
Is it possible to change the data in the row in table from just TEXT to a link to another page in PU ? I cant seem to figure it out.
In a former dashboard I set up the column I wanted links in to be a link
$columns = @(
New-UDTableColumn -Property ipAddress -Title "IP Address" -render {new-udlink -text "$($eventdata.ipaddress)" -url "https://whatismyipaddress.com/ip/$($eventdata.ipAddress)" -openinnewwindow} -IncludeInSearch -IncludeInExport
)
New-UDTable -Data $data -Columns $columns
Using the -render paremeter in New-UDTableColumn
and new-udlink to build the URL
Hawt damn, I was so close to figuring it out but this worked perfectly!!! Thanks!