Class DateTimePicker Stay organized with collections Save and categorize content based on your preferences.
Page Summary
The DateTimePicker is an input field for selecting a date and time, supporting form submission validation.
It is available for Google Workspace add-ons and Google Chat apps.
Key methods include setting the field name, defining an action on change, setting the time zone offset, setting the title, and setting the default value in milliseconds since the epoch.
An input field that allows users to input a date and time.
Supports form submission validation. WhenAction.setAllWidgetsAreRequired(allWidgetsAreRequired) is set totrue or this widget is specified throughAction.addRequiredWidget(requiredWidget), the submissionaction is blocked unless a value is selected.
Available for Google Workspace add-ons and Google Chat apps.
constdateTimePicker=CardService.newDateTimePicker().setTitle('Enter the date and time.').setFieldName('date_time_field')// Set default value as Jan 1, 2018, 3:00 AM UTC. Either a number or// string is acceptable..setValueInMsSinceEpoch(1514775600)// EDT time is 5 hours behind UTC..setTimeZoneOffsetInMins(-5*60).setOnChangeAction(CardService.newAction().setFunctionName('handleDateTimeChange'),);
Methods
| Method | Return type | Brief description |
|---|---|---|
add | Widget | Adds the event action that can be performed on the widget. |
set | Date | Sets the field name that identifies this picker in the event object that is generated whenthere is a UI interaction. |
set | Date | In a Google Workspace Studio agent, letsinputvariables accept datetime outputs from other steps in the agent. |
set | Widget | Sets the unique ID assigned that's used to identify the widget to be mutated. |
set | Date | Sets anAction that the script performs whenever the picker input changes. |
set | Date | Sets the number of minutes that the time zone should be offset from UTC. |
set | Date | Sets the title displayed above the input field. |
set | Date | Sets the prefilled value to be set in the input field. |
set | Date | Sets the prefilled value to be set in the input field. |
set | Widget | Sets the visibility of the widget. |
Detailed documentation
addEventAction(eventAction)
Adds the event action that can be performed on the widget.
Parameters
| Name | Type | Description |
|---|---|---|
event | Event | TheEvent to be added. |
Return
Widget — The Object, for chaining.
setFieldName(fieldName)
Sets the field name that identifies this picker in the event object that is generated whenthere is a UI interaction. The field name is visible to the user. Required; the specified fieldname must be unique.
Parameters
| Name | Type | Description |
|---|---|---|
field | String | The name to assign to this input. |
Return
Date — This picker, for chaining.
setHostAppDataSource(hostAppDataSource)
In a Google Workspace Studio agent, letsinputvariables accept datetime outputs from other steps in the agent. For example, receive thetime a gmail message was sent or the date on which a calendar event is scheduled.
Only available for Google Workspace add-ons that extend Google Workspace Studio.
constworkflowDataSource=CardService.newWorkflowDataSource().setIncludeVariables(true);consthostAppDataSource=CardService.newHostAppDataSource().setWorkflowDataSource(workflowDataSource);constdateTimePicker=CardService.newDateTimePicker().setTitle('Enter the date and time.').setFieldName('date_time_field').setHostAppDataSource(hostAppDataSource);
Parameters
| Name | Type | Description |
|---|---|---|
host | Host | The data source. |
Return
Date — This picker, for chaining.
setId(id)
Sets the unique ID assigned that's used to identify the widget to be mutated. Widget mutationis only supported in Add-Ons.
Parameters
| Name | Type | Description |
|---|---|---|
id | String | The id of the widget, with a limit of 64 characters and in format of `[a-zA-Z0-9-]+`. |
Return
Widget — This object, for chaining.
setOnChangeAction(action)
Sets anAction that the script performs whenever the picker input changes.
Parameters
| Name | Type | Description |
|---|---|---|
action | Action | The action to take. |
Return
Date — This picker, for chaining.
setTimeZoneOffsetInMins(timeZoneOffsetMins)
Sets the number of minutes that the time zone should be offset from UTC. If set, the date andtime is displayed in the specified time zone. If not set, the time is displayed in the user'stime zone.
Parameters
| Name | Type | Description |
|---|---|---|
time | Integer | The number of minutes that the time zone is offset from UTC. |
Return
Date — This picker, for chaining.
setTitle(title)
Sets the title displayed above the input field.
Parameters
| Name | Type | Description |
|---|---|---|
title | String | The input field title. |
Return
Date — This picker, for chaining.
setValueInMsSinceEpoch(valueMsEpoch)
Sets the prefilled value to be set in the input field.
Parameters
| Name | Type | Description |
|---|---|---|
value | Number | The default value placed in the input as a number, in milliseconds since the epoch. It is always represented as a string in the form callback parameters. |
Return
Date — This picker, for chaining.
setValueInMsSinceEpoch(valueMsEpoch)
Sets the prefilled value to be set in the input field.
Parameters
| Name | Type | Description |
|---|---|---|
value | String | The default value placed in the input as a string, in milliseconds since the epoch. It is always represented as a string in the form callback parameters. |
Return
Date — This picker, for chaining.
setVisibility(visibility)
Sets the visibility of the widget. The default value is `VISIBLE`.
Parameters
| Name | Type | Description |
|---|---|---|
visibility | Visibility | TheVisibility of the widget. |
Return
Widget — The Object, for chaining.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-03 UTC.