Date Picker
Date Picker component for Universal Dashboard
Last updated
Date Picker component for Universal Dashboard
Last updated
Date pickers pickers provide a simple way to select a single value from a pre-determined set.
Date pickers can be used in Forms and Steppers.
The OnChange event handler is called when the date changes. You can access the current date by using the $Body
variable.
You can customize how the date picker is show. The default is the inline
variant that displays the date picker popup inline with the input control. You can also use the dialog
variant that pops the date picker up in the middle of the screen. Finally, the static
variant displays the date picker without having to click anything.
New-UDDatePicker
Name | Type | Description | Required |
Id | String | The ID of the component. It defaults to a random GUID. | false |
Label | String | The label to show next to the date picker. | false |
Variant | String | The theme variant to apply to the date picker. | false |
DisableToolbar | SwitchParameter | Disables the date picker toolbar. | false |
OnChange | Endpoint | A script block to call with the selected date. The $EventData variable will be the date selected. | false |
Format | String | The format of the date when it is selected. | false |
Value | DateTime | The current value of the date picker. | false |