Hi,
Seeing a weird issue. The colors I chose for various buttons do not display right in Chrome, but they do in IE / Edge.
Blockquote
########################################################
#Load a grid
New-UDCard -Title "Your Staff" -TitleAlignment "Left" -Endpoint {
New-UDGrid -Endpoint {
$Session:Page_MyCTVs_All_Employees | Select-Object -Property Icon,Name,Button_Details,Checkbox | Out-UDGridData
}
New-UDCard -Title "Actions" -TitleAlignment "Left" -Endpoint {
New-UDParagraph -Text 'These are a series of actions you can take. Once you have checked the box for all users, click one of the buttons to perform the action'
New-UDButton -Text "Extend" -BackgroundColor "Green" -OnClick {
$Session:Page_MyCTVs_All_Employees_Find_Checked = $null
$Session:Page_MyCTVs_All_Employees_Find_Checked = Find-PMIUDCheckedObjects -CheckBoxIDPropertyName "Checkbox_ID" -ArrayOfObjectsWithCheckBox $Session:Page_MyCTVs_All_Employees
Show-UDModal -Content {
New-UDGrid -Endpoint {
$Session:Page_MyCTVs_All_Employees_Find_Checked | Select-Object -Property Name | Out-UDGridData
}
}
}
New-UDButton -Text "Mark as not my staff" -BackgroundColor "Yellow" -FontColor "Black" -OnClick {}
New-UDButton -Text "Disable" -BackgroundColor "Orange" -OnClick {}
New-UDButton -Text "Delete" -BackgroundColor "Red" -OnClick {}
}
}
Here is what it looks like in chrome:
BTW, this is running in IIS on PS7 incase that helps.
Any ideas? Do i need an update or something?