我有下面的小部件,用于根据我的数据库显示日期。但是,在我的搜索框中,它将预先选择今天的日期。我想把它留空。有什么建议可以让我为空吗?
[
'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,
],
],
],
答案 0 :(得分:0)
如果您要讨论的是默认使用您的特定设置显示的占位符,则需要从'presetDropdown' => true,
中删除filterWidgetOptions
选项,它将删除占位符