Product: PowerShell Universal
Version: 3.1.4
Hello,
I am puzzled and wonder why New-UDTextbox does not display the following command page since the update to 3.x:
New-UDTextbox -Id "PSUEMailWSDauerTB" -Label "Zeitspanne(Tage)" -Mask "[0][0][0][0]" -FullWidth -Value 30
i get:
so here i am
with:
New-UDTextbox -Id "PSUEMailWSDauerTB" -Label "Zeitspanne(Tage)" -Mask "[0][0][0][0]" -FullWidth -Value "30"
i get:
The message is that a string is expected which is feasible but why this change?
Errormessage:
Error rendering component (mu-textbox)
Error: value should be string
and I still have the problem with the command
New-UDSelect -Option {
New-UDSelectOption -Name "Test1" -Value "1"
New-UDSelectOption -Name "Test2" -Value "2"
New-UDSelectOption -Name "Test3" -Value "3"
} -Id "BetriebLDIVerfahrenKalkulationSelectBoxServer" -Label "Auswahl Server oder Alle" -FullWidth -Multiple -DefaultValue "2"
with -DefaultValue:
and without:
The Errormessage with the Parameter -Defaultvalue “2” is:
Error rendering component (mu-select)
Error: MUI: The `value` prop must be an array when using the `Select` component with `multiple`.
but the Array did not changed…