> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Date

```
SoftUI.formTypes.date(disabled),
```

<ParamField path="disabled" type="boolean" required>
  Indicate if the date should be shown as disabled
</ParamField>

## Data required for getActualSet function

Object, your date object.

## Data returned

Object | or null.

## Example Usage

```javascript theme={null}
{
    optionId: "join_data",
    optionName: "Join Date",
    optionDescription: "At what time do you want me to join?",
    optionType: SoftUI.formTypes.date(false),
    getActualSet: ({guild}) => {
      return timestamps[guild.id];
    },
    setNew: ({guild,newData}) => {
      timestamps[guild.id] = newData;
      return;
    },
},

```

## Image

<Frame>
  <img src="https://mintcdn.com/assistantscenter/e0fzjuWUPc5-sSJC/images/formtypes/softui-date.png?fit=max&auto=format&n=e0fzjuWUPc5-sSJC&q=85&s=db6f8c515a46e42ec8d3c1e66192cc87" width="385" height="470" data-path="images/formtypes/softui-date.png" />
</Frame>
