2amigos / yii2-date-time-picker-widget

Bootstrap DateTimePicker Widget for Yii2
Other
44 stars 35 forks source link

pickerPosition not working #14

Closed ahmadfadlydziljalal closed 7 years ago

ahmadfadlydziljalal commented 8 years ago

Is there pickerPosition is exist, pickerPosition gives me : unknown property.

MazheM commented 7 years ago

Thats code works fro me:

<?= $form->field($model, 'date')->widget(
        DateTimePicker::className(), [
             // modify template for custom rendering
            'template' => '{input}',
            'clientOptions' => [
                'autoclose' => true,
                'format' => 'dd.mm.yyyy hh:ii',
                'todayBtn' => true,
                'pickerPosition' => 'bottom-left'
            ]
        ]);?>
tonydspaniard commented 7 years ago

Thanks @MazheM

pickerPosition is actually an attribute of the jquery plugin not the widget itself.