GridView日期过滤器搜索框为空

时间:2019-01-15 03:33:36

标签: gridview yii2

我有下面的小部件,用于根据我的数据库显示日期。但是,在我的搜索框中,它将预先选择今天的日期。我想把它留空。有什么建议可以让我为空吗?

[
    'filterType' => GridView::FILTER_DATE_RANGE,
    'label' => 'Date',
    'attribute' => 'date',
    'format' => ['date', 'php:Y-m-d'],
    'filterWidgetOptions' => [
        'presetDropdown' => true,
        'convertFormat' => true,
        'pluginOptions' => [
            'locale' => [
                'format' => 'Y-m-d',
            ],
            'opens' => 'left',
            'autoclose' => true,
            'todayHighlight' => false,
            'allowClear' => true,
        ],
    ],
],

1 个答案:

答案 0 :(得分:0)

如果您要讨论的是默认使用您的特定设置显示的占位符,则需要从'presetDropdown' => true,中删除filterWidgetOptions选项,它将删除占位符