DatePicker#

Download this notebook from GitHub (right-click to download).


import panel as pn

pn.extension()

The DatePicker widget allows selecting selecting a date value using a text box and the browser’s date-picking utility.

For more information about listening to widget events and laying out widgets refer to the widgets user guide. Alternatively you can learn how to build GUIs by declaring parameters independently of any specific widgets in the param user guide. To express interactivity entirely using Javascript without the need for a Python server take a look at the links user guide.

Parameters:#

For layout and styling related parameters see the customization user guide.

Core#

  • end (datetime): The latest selectable date

  • start (datetime): The earliest selectable date

  • value (datetime): The selected value as a datetime type

Display#

  • disabled (boolean): Whether the widget is editable

  • name (str): The title of the widget

  • disabled_dates (list): dates to make unavailable for selection; others will be available

  • enabled_dates (list): dates to make available for selection; others will be unavailable


DatePicker uses a browser-dependent calendar widget to select the date:

date_picker = pn.widgets.DatePicker(name='Date Picker')

date_picker

DatePicker.value returns a datetime type that can be read out or set like other widgets:

date_picker.value

Controls#

The DatePicker widget exposes a number of options which can be changed from both Python and Javascript. Try out the effect of these parameters interactively:

pn.Row(date_picker.controls(jslink=True), date_picker)
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).