Datepicker

Component ID

1648058

Component name

Datepicker

Component type

module

Maintenance status

Development status

Component security advisory coverage

covered

Downloads

25927

Component created

Component changed

Component body

This module extends the date_popup module (from the date project) to provide a JQuery UI inline datepicker, rather than a popup out of a textfield. For an example of this see http://jqueryui.com/demos/datepicker/#inline

There are 3 ways to use this module.

  1. Using the Views filter handler for Date filters.
  2. Using the Form API, by setting #type to "datepicker", eg
    $form['date'] = array(
      '#type' => 'datepicker',
      '#date_format' => 'd/m/Y',
    );
  3. Using the datepicker_block submodule, which provides a block that can be used to filter another view. This module will simply submit a $_GET variable to an internal Drupal path, for example submit might take you to http://example.com/events?date_filter[value][date]=2012-06-20

Requirements

  • Date Popup (from the date project)