Date Picker

Date Picker component for Universal Dashboard

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.

New-UDDatePicker

OnChange Event Handler

The OnChange event handler is called when the date changes. You can access the current date by using the $Body variable.

New-UDDatePicker -OnChange {
    Show-UDToast -Message $body
}

Variant

You can customize how the date picker is shown. 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 -Variant static

Locale

To set the locate of the date picker, specify the -Locale parameter.

New-UDDatePicker -Locale fr

Minimum and Maximum

By default, the user can select any date. To specify minimum and maximum dates, using the -Minimum and -Maximum parameters.

New-UDDatePicker -Minimum ((Get-Date).AddDays(-15)) -Maximum ((Get-Date).AddDays(15))

API

Last updated