Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function init () |
||
15 | { |
||
16 | $this->format = ['date', $this->format]; |
||
17 | $this->filter = \yii\jui\DatePicker::widget([ |
||
18 | 'model'=> $this->grid->filterModel, |
||
19 | 'attribute' => $this->attribute, |
||
20 | 'language' => Yii::$app->language, |
||
21 | 'dateFormat' => 'dd/MM/yyyy', |
||
22 | 'options' => array_merge(['class' => 'form-control'], $this->filterOptions) |
||
23 | ]); |
||
24 | $this->options = array_merge(['width' => '150px'], $this->options); |
||
25 | |||
26 | parent::init(); |
||
27 | } |
||
29 |