We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$Dashboard = New-UDDashboard -Title "Test" -Content { New-UDInput -Title "Simple Form" -Id "Form" -Content { New-UDInputField -Type 'textbox' -Name 'test' -Placeholder 'Test testbox' -DefaultValue "Test" New-UDInputField -Type 'checkbox' -Name 'test2' -Placeholder 'checkbox' New-UDInputField -Type 'select' -Name 'test3' -Placeholder 'select' -Values @("Test", "Test2", "Test3") -DefaultValue "Test" New-UDInputField -Type 'radioButtons' -Name 'test4' -Placeholder @("My Test Value", "My Test Value 2", "My Test Value 3") -Values @("MyTestValue", "MyTestValue2", "MyTestValue3") New-UDInputField -Type 'password' -Name 'test5' -Placeholder 'Password' New-UDInputField -Type 'textarea' -Name 'test6' -Placeholder 'Big Box o Text' New-UDInputField -Type 'switch' -Name 'test7' -Placeholder @("Yes", "No") } -Endpoint { param($Test, $Test2, $Test3, $Test4, $Test5, $Test6, $Test7) New-UDInputAction -Toast "Test" -ClearInput } }
The text was updated successfully, but these errors were encountered:
Fixed in dev - will PR
Sorry, something went wrong.
leeberg
No branches or pull requests
The text was updated successfully, but these errors were encountered: