# Date

<figure><img src="https://884329393-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MhzNRg0B4ECiNXc093G%2Fuploads%2FbWSnYkHMnjEoY6lMcjP1%2FGroup%2083.png?alt=media&#x26;token=4f1472b8-6bf0-4e2d-b22c-8d1305176277" alt=""><figcaption></figcaption></figure>

## Input combo type date

Displays a date input field in the format `mm/dd/yy, HH:MM` (12h format).

## Usage example

```xml
<form>
    <inputcombo
        type="date"
        id="start_date"
        label="Date"
        description="Set the date in which the measuremet was performed"
        value="2024-07-19T17:30"
    />    
</form>
```

## Properties

* `id`: Unique identifier to access this field's data
* `label`: Header text
* `description`: Short descriptive text
* `shape`: Used to align the label and the input field. Its allowed values are
  * `compactVertical`
  * `wideVertical`
  * `wideHorizontal`
* `value`: Sets a default date. The ISO 8601 format must be used:  `yyyy-MM-dd'T'HH:mm`
