> For the complete documentation index, see [llms.txt](https://docs.thingsup.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thingsup.io/widgets/date-picker-widget.md).

# Date Picker Widget

**General Setting**

User can change following things in Date Picker widget:

* Name for widget which will be used data reference. For Example, if widget name is 'Date Picker', then data of widget is referenced as Data Picker.date
* Show title - User can show/hide widget title
* Title Color
* Background Color

![Configure Date Picker Widget](/files/jRTlf0fdNfZjR8tArH1o)

#### Source

Date Picker widget does not support Source settings.

#### Event Handling

Date Picker widget does not support Event handling.

**Examples:**

TestCase 1:

If user want to fetch data using Action which requires startTime as parameter and show it to Table Widget.  So following are the steps to perform this operation and are as follows.

1. Add Table Widget to dashboard and change its color, background color, file name as per requirement.
2. Now go to **Source** tab of Table Widget and select mode as Action, and select a required ActionID from dropdown.
3. Now, in Action Parameter, select parameter as **Date Picker.date** and set Key as **startTime,** and enable **Reload On Change operation.**
4. It will send JSON object with 'startTime:\<selected\_date>' as key-value pair to given ActionID as shown in below block. And received response of action will get shown in table.

```
// JSON Object 
// here, Date Format - dd/MM/yyyy is fixed

{
    "startTime":<selected_date>  
}
```

![Configure Date Picker Widget](/files/N8JvmHCwBsh9ptevI2aI)

![Configure Date Picker Widget](/files/Yb4Pa50FZtIyVhf2kO1F)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.thingsup.io/widgets/date-picker-widget.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
