2017 © Pedro Peláez
 

yii2-extension yii2-datetimepicker

Datetime picker input widget for Yii 2

image

alexantr/yii2-datetimepicker

Datetime picker input widget for Yii 2

  • Thursday, June 21, 2018
  • by alexantr
  • Repository
  • 1 Watchers
  • 1 Stars
  • 77 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 4 Versions
  • 26 % Grown

The README.md

Datetime picker input widget for Yii 2

This extension renders an input with flatpickr., (*1)

Latest Stable Version Total Downloads License, (*2)

Installation

Install extension through composer:, (*3)

composer require alexantr/yii2-datetimepicker

Usage

The following code in a view file would render an input with color picker:, (*4)

<?= alexantr\datetimepicker\DateTimePicker::widget(['name' => 'attributeName']) ?>

If you want to use this input widget in an ActiveForm, it can be done like this:, (*5)

<?= $form->field($model, 'attributeName')->widget(alexantr\datetimepicker\DateTimePicker::className()) ?>

Configuring the flatpickr options should be done using the clientOptions attribute:, (*6)

<?= alexantr\datetimepicker\DateTimePicker::widget([
    'name' => 'attributeName',
    'clientOptions' => [
        'allowInput' => false,
        'enableTime' => false,
        'enableSeconds' => false,
        'dateFormat' => 'Y-m-d',
    ],
]) ?>

By default widget uses flatpickr's options:, (*7)

[
    'allowInput' => true,
    'dateFormat' => 'Y-m-d H:i:S',
    'enableTime' => true,
    'enableSeconds' => true,
    'minuteIncrement' => 1,
    'time_24hr' => true,
]

The Versions

21/06 2018

dev-master

9999999-dev

Datetime picker input widget for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget datetimepicker flatpickr datetime-picker

21/06 2018

1.1.1

1.1.1.0

Datetime picker input widget for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget datetimepicker flatpickr datetime-picker

12/02 2018

1.1.0

1.1.0.0

Datetime picker input widget for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget datetimepicker flatpickr datetime-picker

08/02 2018

1.0.0

1.0.0.0

Datetime picker input widget for Yii 2

  Sources   Download

MIT

The Requires

 

yii2 widget datetimepicker flatpickr datetime-picker