MySQL
0
Вклад в тег
[
'attribute' => 'date_start',
'label' => 'Date start',
'filter' => DatePicker::widget([
'name' => 'CampaignSearch[from_date]',
'type' => DatePicker::TYPE_RANGE,
'name2' => 'CampaignSearch[to_date]',
'options' => ['placeholder' => 'Start date','class' => 'datepicker'],
'options2' => ['placeholder' => 'End date', 'class' => 'datepicker'],
'pluginOptions' => [
'autoclose'=>true,
'format' => 'yyyy/mm/dd',
]
]),
],
public $from_date;
public $to_date;
->andFilterWhere(['between', 'date_start', $this->from_date,$this->to_date]);