Checkbox
Check component for Universal Dashboard
Checkboxes allow the user to select one or more items from a set.
Checkboxes
Checkboxes can be disabled and checked by default
Checkboxes with custom icon
Create checkboxes that use any icon and style.
Checkboxes with onChange script block
Create checkboxes that fire script blocks when changed.
Checkbox with custom label placement
You can adjust where the label for the checkbox is placed.
Get the value of a Checkbox
You can use Get-UDElement
to get the value of the checkbox. Get-UDElement
will also return other properties of the checkbox component.
The following example shows a toast message with the value of the checkbox.
New-UDCheckbox
Name | Type | Description | Required |
Label | String | The label to show next to the checkbox. | false |
Icon | Object | The icon to show instead of the default icon. | false |
CheckedIcon | Object | The icon to show instead of the default checked icon. | false |
OnChange | Endpoint | Called when the value of the checkbox changes. The $EventData variable will have the current value of the checkbox. | false |
Style | Hashtable | A hashtable of styles to apply to the checkbox. | false |
Disabled | SwitchParameter | Whether the checkbox is disabled. | false |
Checked | Boolean | Whether the checkbox is checked. | false |
ClassName | String | A CSS class to assign to the checkbox. | false |
LabelPlacement | String | Where to place the label. | false |
Id | String | The ID of the component. It defaults to a random GUID. | false |
Last updated