0
有沒有辦法讓兩個字段在GridView美國DatePicke中挑選日期。我需要dateFrom和dateTo字段爲單個屬性。Yii2 GridView - 使用範圍DatePicker
這是我當前的代碼:
[
'attribute' => 'created_at',
'label' => 'Date Added',
'value' => 'created_at',
'filter' => \yii\jui\DatePicker::widget([
'model'=>$searchModel,
'dateFormat' => 'MM-dd-yyyy',
'attribute'=>'dateFrom',
'options' => [
'class' => 'form-control'
],
]),
'format' => ['date', 'php:m-d-Y, H:s']
]
我認爲你必須在你的模型創建兩個新的屬性,並結合他們保存。 –
請參閱:http://demos.krajee.com/widget-details/datepicker#markup-range –
本主題也應該有所幫助http://www.yiiframework.com/forum/index.php/topic/55966-yii2-日期範圍/ – SiZE