Link
Link component for Universal Dashboard.
Create a hyper link in a dashboard.
Basic Link
Create a basic link that goes to a web page.
New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.com
Change Style
Adjust the underline and text style.
New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.com -Variant h2 -Underline always
Open in a New Window
Open the link a new window when clicked.
New-UDLink -Text 'Ironman Software' -Url https://www.ironmansoftware.com -OpenInNewWindow
OnClick Event Handler
Execute a PowerShell script block when the link is clicked.
New-UDLink -Text 'Ironman Software' -OnClick {
Show-UDToast "Hello!"
}
API