Class kartik\datetime\DateTimePicker

Inheritancekartik\datetime\DateTimePicker » kartik\base\InputWidget » yii\widgets\InputWidget » yii\base\Widget » yii\base\Component » yii\base\BaseObject
Implementskartik\base\BootstrapInterface, yii\base\Configurable, yii\base\ViewContextInterface
Uses Traitskartik\base\BootstrapTrait, kartik\base\TranslationTrait, kartik\base\WidgetTrait
Subclasseskartik\widgets\DateTimePicker
Available since version1.0

DateTimePicker widget is a Yii2 wrapper for the Bootstrap DateTimePicker plugin by smalot. This is a fork of the DatePicker plugin by @eternicode and adds the time functionality.

For example,

use kartik\datetime\DateTimePicker;

echo '<label>Start Date/Time</label>';
echo DateTimePicker::widget([
    'name' => 'datetime_10',
    'options' => ['placeholder' => 'Select operating time ...'],
    'convertFormat' => true,
    'pluginOptions' => [
        'format' => 'd-M-Y g:i A',
        'startDate' => '01-Mar-2014 12:00 AM',
        'todayHighlight' => true
    ]
]);

See also http://www.malot.fr/bootstrap-datetimepicker/.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
$attribute string|null The model attribute that this widget is associated with. yii\widgets\InputWidget
$autoDefaultTimezone boolean Whether to auto default timezone if not set. kartik\datetime\DateTimePicker
$autoIdPrefix string The prefix to the automatically generated widget IDs. yii\base\Widget
$baseSourcePath string|false Get parsed base source path based on $sourcePath setting. If $sourcePath is not set, it will return the current working directory of this widget class. kartik\base\WidgetTrait
$behaviors yii\base\Behavior[] List of behaviors attached to this component. yii\base\Component
$bsColCssPrefixes array The bootstrap grid column css prefixes mapping, the key is the bootstrap versions, and the value is an array containing the sizes and their corresponding grid column css prefixes. kartik\base\BootstrapTrait
$bsCssMap array CSS conversion mappings across bootstrap library versions. kartik\base\BootstrapTrait
$bsExtBasename integer The yii2 bootstrap extension base name (readonly property available via getter method getBsExtBasename()) kartik\base\BootstrapTrait
$bsVer integer Bootstrap version number currently set (readonly property available via getter method getBsVer()) kartik\base\BootstrapTrait
$bsVersion integer|string The bootstrap library version that you wish to use for this specific extension / widget. kartik\base\BootstrapTrait
$buttonOptions array The HTML attributes for the button that is rendered for TYPE_BUTTON. kartik\datetime\DateTimePicker
$convertFormat boolean Whether the widget should automatically format the date from the PHP DateTime format to the javascript/jquery plugin format. kartik\base\InputWidget
$counter integer A counter used to generate $id for widgets. yii\base\Widget
$data array The data (for list inputs) kartik\base\InputWidget
$defaultBtnCss string Default bootstrap button CSS (readonly property available via getter method getDefaultBtnCss()) kartik\base\BootstrapTrait
$defaultIconPrefix string Default icon prefix (readonly property available via getter method getDefaultIconPrefix()) kartik\base\BootstrapTrait
$defaultOptions array Default HTML attributes or other settings for widgets. kartik\base\WidgetTrait
$defaultPluginOptions array Default plugin options for the widget kartik\base\WidgetTrait
$disabled boolean Whether input is to be disabled kartik\base\InputWidget
$dropdownClass string Bootstrap dropdown class name based on currently configured bootstrap version (readonly property available via getter method getDropdownClass()) kartik\base\BootstrapTrait
$field yii\widgets\ActiveField Active input field, which triggers this widget rendering. yii\widgets\InputWidget
$hashVarLoadPosition integer The position where the client JS hash variables for the input widget will be loaded. kartik\base\WidgetTrait
$i18n array The the internalization configuration for this widget. kartik\base\TranslationTrait
$id string|null ID of the widget. Note that the type of this property differs in getter and setter. See getId() and setId() for details. yii\base\Widget
$language string The language configuration (e.g. 'fr-FR', 'zh-CN'). kartik\base\InputWidget
$layout string The layout template to display the buttons (applicable only when $type is one of TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND) or TYPE_BUTTON. kartik\datetime\DateTimePicker
$model yii\base\Model|null The data model that this widget is associated with. yii\widgets\InputWidget
$moduleId string The module identifier if this widget is part of a module. kartik\base\WidgetTrait
$name string|null The input name. yii\widgets\InputWidget
$options array The HTML attributes for the input tag. kartik\datetime\DateTimePicker
$pickerButton array|string|boolean The calendar picker button configuration. kartik\datetime\DateTimePicker
$pickerIcon string The markup for the calendar picker icon. kartik\datetime\DateTimePicker
$pjaxContainerId string The identifier for the PJAX widget container if the widget is to be rendered inside a PJAX container. kartik\base\WidgetTrait
$pjaxDuplicationFix boolean Prevent duplication of pjax containers when browser back & forward buttons are pressed. kartik\base\WidgetTrait
$pluginDestroyJs string The javascript that will be used to destroy the jQuery plugin kartik\base\WidgetTrait
$pluginEvents array Widget JQuery events. kartik\base\WidgetTrait
$pluginLoading boolean Show loading indicator while plugin loads kartik\base\InputWidget
$pluginName string The plugin name kartik\datetime\DateTimePicker
$pluginOptions array Widget plugin options. kartik\base\WidgetTrait
$readonly boolean Whether input is to be readonly kartik\base\InputWidget
$removeButton array|string|boolean The calendar remove button configuration - applicable only for type set to TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND. kartik\datetime\DateTimePicker
$removeIcon string The markup for the remove icon (which will clear the datepicker data). kartik\datetime\DateTimePicker
$size string The size of the input - 'lg', 'md', 'sm', 'xs' kartik\datetime\DateTimePicker
$sourcePath string Directory path to the original widget source. kartik\base\WidgetTrait
$stack yii\base\Widget[] The widgets that are currently being rendered (not ended). yii\base\Widget
$type string The markup type of widget markup must be one of the TYPE constants. kartik\datetime\DateTimePicker
$value string The input value. yii\widgets\InputWidget
$view yii\web\View The view object that can be used to render views or view files. Note that the type of this property differs in getter and setter. See getView() and setView() for details. yii\base\Widget
$viewPath string The directory containing the view files for this widget. yii\base\Widget

Protected Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
$_bsVer integer Current bootstrap version number kartik\base\BootstrapTrait
$_dataVar string The HTML5 data variable name that will be used to store the Json encoded pluginOptions within the element on which the jQuery plugin will be initialized. kartik\base\WidgetTrait
$_defaultBtnCss string Default bootstrap button CSS kartik\base\BootstrapTrait
$_defaultIconPrefix string Default icon CSS prefix kartik\base\BootstrapTrait
$_encOptions string The JSON encoded plugin options. kartik\base\WidgetTrait
$_hashVar string The generated hashed variable name that will store the JSON encoded pluginOptions in yii\web\View::POS_HEAD. kartik\base\WidgetTrait
$_isBs4 boolean Flag to detect whether bootstrap 4. kartik\base\BootstrapTrait
$_lang string The two or three letter lowercase code for the language according to ISO-639. kartik\base\InputWidget
$_langFile string The language js file. kartik\base\InputWidget
$_loadIndicator string The indicator to be displayed while plugin is loading. kartik\base\InputWidget
$_msgCat string Translation message file category name for i18n. kartik\base\TranslationTrait

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__call() Calls the named method which is not a class method. yii\base\Component
__clone() This method is called after the object is created by cloning an existing one. yii\base\Component
__construct() Constructor. yii\base\BaseObject
__get() Returns the value of a component property. yii\base\Component
__isset() Checks if a property is set, i.e. defined and not null. yii\base\Component
__set() Sets the value of a component property. yii\base\Component
__unset() Sets a component property to be null. yii\base\Component
addCssClass() Adds bootstrap CSS class to options by parsing the bootstrap version for the specified Bootstrap CSS type. kartik\base\BootstrapTrait
afterRun() This method is invoked right after a widget is executed. yii\base\Widget
attachBehavior() Attaches a behavior to this component. yii\base\Component
attachBehaviors() Attaches a list of behaviors to the component. yii\base\Component
beforeRun() This method is invoked right before the widget is executed. yii\base\Widget
begin() Begins a widget. yii\base\Widget
behaviors() Returns a list of behaviors that this component should behave as. yii\base\Component
canGetProperty() Returns a value indicating whether a property can be read. yii\base\Component
canSetProperty() Returns a value indicating whether a property can be set. yii\base\Component
className() Returns the fully qualified name of this class. yii\base\BaseObject
detachBehavior() Detaches a behavior from the component. yii\base\Component
detachBehaviors() Detaches all behaviors from the component. yii\base\Component
end() Ends a widget. yii\base\Widget
ensureBehaviors() Makes sure that the behaviors declared in behaviors() are attached to this component. yii\base\Component
getBSClass() Gets the respective Bootstrap class based on currently configured bootstrap version. kartik\base\BootstrapTrait
getBaseSourcePath() Get parsed base source path based on $sourcePath setting. If $sourcePath is not set, it will return the current working directory of this widget class. kartik\base\WidgetTrait
getBehavior() Returns the named behavior object. yii\base\Component
getBehaviors() Returns all behaviors attached to this component. yii\base\Component
getBsVer() Gets the current set bootstrap version number. kartik\base\BootstrapTrait
getCssClass() Gets bootstrap css class by parsing the bootstrap version for the specified BS CSS type. kartik\base\BootstrapTrait
getDefaultBtnCss() Gets the default button CSS kartik\base\BootstrapTrait
getDefaultIconPrefix() Gets the default icon css prefix kartik\base\BootstrapTrait
getDropdownClass() Gets the respective bootstrap dropdown class name based on currently configured bootstrap version. kartik\base\BootstrapTrait
getId() Returns the ID of the widget. yii\base\Widget
getView() kartik\base\WidgetTrait
getViewPath() Returns the directory containing the view files for this widget. yii\base\Widget
hasEventHandlers() Returns a value indicating whether there is any handler attached to the named event. yii\base\Component
hasMethod() Returns a value indicating whether a method is defined. yii\base\Component
hasProperty() Returns a value indicating whether a property is defined for this component. yii\base\Component
init() Initializes the widget. kartik\datetime\DateTimePicker
initI18N() Yii i18n messages configuration for generating translations kartik\base\TranslationTrait
isBs() Validate Bootstrap version kartik\base\BootstrapTrait
isBs4() Validate if Bootstrap 4.x version. kartik\base\BootstrapTrait
off() Detaches an existing event handler from this component. yii\base\Component
on() Attaches an event handler to an event. yii\base\Component
registerAssets() Registers the needed assets kartik\datetime\DateTimePicker
registerWidgetJs() Registers a JS code block for the widget. kartik\base\WidgetTrait
removeCssClass() Removes bootstrap CSS class from options by parsing the bootstrap version for the specified Bootstrap CSS type. kartik\base\BootstrapTrait
render() Renders a view. yii\base\Widget
renderFile() Renders a view file. yii\base\Widget
run() Executes the widget. yii\base\Widget
setId() Sets the ID of the widget. yii\base\Widget
setView() Sets the view object to be used by this widget. yii\base\Widget
trigger() Triggers an event. yii\base\Component
widget() Creates a widget instance and runs it. yii\base\Widget

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
addAsset() Adds an asset to the view. kartik\base\WidgetTrait
configureBsVersion() Configures the bootstrap version settings kartik\base\BootstrapTrait
convertDateFormat() Automatically convert the date format from PHP DateTime to Javascript DateTime format kartik\base\InputWidget
fixPjaxDuplication() Fix for weird PJAX container duplication behavior on pressing browser back and forward buttons. kartik\base\WidgetTrait
getBsExtBasename() The yii2-bootstrap extension base name. kartik\base\BootstrapTrait
getInput() Generates an input. kartik\base\InputWidget
getPluginScript() Returns the plugin registration script. kartik\base\WidgetTrait
hasModel() yii\widgets\InputWidget
hashPluginOptions() Generates a hashed variable to store the pluginOptions. kartik\base\WidgetTrait
initBsVersion() Initializes bootstrap versions for the widgets and asset bundles. kartik\base\BootstrapTrait
initDestroyJs() Generates the pluginDestroyJs script if it is not set. kartik\base\WidgetTrait
initDisability() Validates and sets disabled or readonly inputs. kartik\base\InputWidget
initIcon() Initializes picker icon and remove icon kartik\datetime\DateTimePicker
initInputWidget() Initializes the input widget. kartik\base\InputWidget
initLanguage() Initialize the plugin language. kartik\base\InputWidget
isSameVersion() Compares two versions and checks if they are of the same major BS version. kartik\base\BootstrapTrait
mergeDefaultOptions() Merge default options kartik\base\WidgetTrait
parseDateFormat() Parses and sets plugin date format based on attribute type using yii\helpers\FormatConverter. Currently this method is used only within the kartik\date\DatePicker and \kartik\datetime\DateTimePicker\ widgets. kartik\base\InputWidget
parseMarkup() Parses the input to render based on markup type kartik\datetime\DateTimePicker
parseVer() Parses and returns the major BS version kartik\base\BootstrapTrait
registerPlugin() Registers a specific plugin and the related events kartik\base\WidgetTrait
registerPluginOptions() Registers plugin options by storing within a uniquely generated javascript variable. kartik\base\WidgetTrait
renderButton() Returns the button to render kartik\datetime\DateTimePicker
renderDateTimePicker() Renders the date time picker widget. kartik\datetime\DateTimePicker
renderInput() Renders the source input for the kartik\datetime\DateTimePicker plugin. Graceful fallback to a normal HTML text input - in case JQuery is not supported by the browser kartik\datetime\DateTimePicker
renderInputHtml() Render a HTML input tag. yii\widgets\InputWidget
setDataVar() Sets a HTML5 data variable. kartik\base\WidgetTrait
setLanguage() Sets the language JS file if it exists. kartik\base\InputWidget

Events

Hide inherited events

EventTypeDescriptionDefined By
EVENT_AFTER_RUN yii\base\WidgetEvent An event raised right after executing a widget. (available since version 2.0.11) yii\base\Widget
EVENT_BEFORE_RUN yii\base\WidgetEvent An event raised right before executing a widget. (available since version 2.0.11) yii\base\Widget
EVENT_INIT yii\base\Event An event that is triggered when the widget is initialized via init(). (available since version 2.0.11) yii\base\Widget

Constants

Hide inherited constants

ConstantValueDescriptionDefined By
LOAD_PROGRESS '
 
'
kartik\base\InputWidget
TYPE_BUTTON 5 Datetimepicker rendered as a button kartik\datetime\DateTimePicker
TYPE_COMPONENT_APPEND 3 Bootstrap appended input group addon type kartik\datetime\DateTimePicker
TYPE_COMPONENT_PREPEND 2 Bootstrap prepended input group addon type kartik\datetime\DateTimePicker
TYPE_INLINE 4 Datetimepicker rendered inline kartik\datetime\DateTimePicker
TYPE_INPUT 1 HTML native text input type kartik\datetime\DateTimePicker

Property Details

$autoDefaultTimezone public property

Whether to auto default timezone if not set.

$buttonOptions public property
Deprecated since v1.5.0

The HTML attributes for the button that is rendered for TYPE_BUTTON. Defaults to

  • ['class'=>'btn btn-default'] for $bsVersion = '3.x', and
  • ['class'=>'btn btn-secondary'] for $bsVersion = '4.x' The following special options are recognized:
  • 'label': string the button label. Defaults to the $pickerIcon setting.
public array $buttonOptions = []
$layout public property

The layout template to display the buttons (applicable only when $type is one of TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND) or TYPE_BUTTON. The following tokens will be parsed and replaced:

  • {picker}: will be replaced with the date picker button (rendered as a bootstrap input group addon).
  • {remove}: will be replaced with the date clear/remove button (rendered as a bootstrap input group addon).
  • {input}: will be replaced with the HTML input markup that stores the datetime. The $layout property defaults to the following value if not set:
  • {picker}{remove}{input} for TYPE_COMPONENT_PREPEND
  • {input}{remove}{picker} for TYPE_COMPONENT_APPEND
  • {picker}{input} for TYPE_BUTTON
public string $layout null
$options public property

The HTML attributes for the input tag.

public array $options = []
$pickerButton public property

The calendar picker button configuration.

  • if this is passed as a string, it will be displayed as is (will not be HTML encoded).
  • if this is set to false, the picker button will not be displayed.
  • if this is passed as an array (which is the default) it will be parsed as HTML attributes for the button (to be displayed as a Bootstrap addon). The following special keys are recognized;
    • label: string, the label for the button. Defaults to $pickerIcon.
    • title: _string|boolean, the title to be displayed on hover. Defaults to 'Select date & time'. To disable, set it to false.
    • position: string, either append or prepend for (bootstrap 4 input groups). If not set this will default to the position determined by $type i.e. TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND.
$pickerIcon public property

The markup for the calendar picker icon. If not set this will default to:

  • <i class="glyphicon glyphicon-calendar kv-dp-icon"></i> if $bsVersion is set to 3.x
  • <i class="fas fa-calendar-alt kv-dp-icon"></i> if $bsVersion is set to 4.x
public string $pickerIcon null
$pluginName public property

The plugin name

public string $pluginName 'datetimepicker'
$removeButton public property

The calendar remove button configuration - applicable only for type set to TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND.

  • if this is passed as a string, it will be displayed as is (will not be HTML encoded).
  • if this is set to false, the remove button will not be displayed.
  • if this is passed as an array (this is the DEFAULT) it will treat this as HTML attributes for the button (to be displayed as a Bootstrap addon). The following special keys are recognized;
    • label: string, the label for the button. Defaults to $removeIcon.
    • title: _string|boolean, the title to be displayed on hover. Defaults to 'Clear field'. To disable, set it to false.
    • position: string, either append or prepend for (bootstrap 4 input groups). If not set this will default to the position determined by $type i.e. TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND.
$removeIcon public property

The markup for the remove icon (which will clear the datepicker data). If not set this will default to:

  • <i class="glyphicon glyphicon-remove kv-dp-icon"></i> if $bsVersion is set to 3.x
  • <i class="fas fa-times kv-dp-icon"></i> if $bsVersion is set to 4.x
public string $removeIcon null
$size public property

The size of the input - 'lg', 'md', 'sm', 'xs'

public string $size null
$type public property

The markup type of widget markup must be one of the TYPE constants.

public string $type self::TYPE_COMPONENT_PREPEND

Method Details

init() public method

Initializes the widget.

If you override this method, make sure you call the parent implementation first.

public void init ( )
throws yii\base\InvalidConfigException
throws ReflectionException
initIcon() protected method

Initializes picker icon and remove icon

protected void initIcon ( $type, $bs3Icon, $bs4Icon )
$type string

The icon type 'picker' or 'remove'

$bs3Icon string

The icon suffix name for Bootstrap 3 version

$bs4Icon string

The icon suffix name for Bootstrap 4 version

throws \yii\base\InvalidConfigException|\Exception
parseMarkup() protected method

Parses the input to render based on markup type

protected string parseMarkup ( $input )
$input string

The input markup

throws yii\base\InvalidConfigException
registerAssets() public method

Registers the needed assets

public void registerAssets ( )
renderButton() protected method

Returns the button to render

protected string renderButton ( &$options, $type 'picker', $addon true )
$options array

The HTML attributes for the button

$type string

Whether the button is picker or remove

$addon boolean

Whether this is an input group addon

throws \yii\base\InvalidConfigException|\Exception
renderDateTimePicker() protected method

Renders the date time picker widget.

protected void renderDateTimePicker ( )
throws yii\base\InvalidConfigException
throws ReflectionException
renderInput() protected method

Renders the source input for the kartik\datetime\DateTimePicker plugin. Graceful fallback to a normal HTML text input - in case JQuery is not supported by the browser

protected void renderInput ( )
throws yii\base\InvalidConfigException