Product: PowerShell Universal
Version: 4.0.1
Hey PSU folks,
After upgrading to 4.0.1 I’m getting errors about new-UDTooltip missing the parameters -Type & -Effect.
These parameters were working fine before hand, but now in the form I get the below error, using the below code.
New-UDColumn -MediumSize 3 -LargeSize 2 -Content {
New-UDTooltip -Id 'tip_timeZone' -Place top -Type info -Effect float -TooltipContent {"Central Time Zone"} -Content {
New-UDSelect -Id 'select_power' -Label 'Automated Power Shedule:' -Option {
New-UDSelectOption -Name 'No Power Schedule' -Value '24x7'
New-UDSelectOption -Name 'On 7 AM, Off 7 PM' -Value 'M-F_7-19'
New-UDSelectOption -Name 'On 8 AM, Off 8 PM' -Value 'M-F_8-20'
}<# New-UDSelect -Id 'select_power' #> -DefaultValue 'M-F_7-19'
}# New-UDTooltip -Id 'tip_timeZone'
}# New-UDColumn
If I remove ‘-Type info’, I get the same error, but saying no parameter matching ‘Effect’.
If I remove both ‘-Type info’ and ‘-Effect float’, everything works. But, it doesn’t look how it was intended to look.
Ideas?
Thanks,
Rob