gridview date column with checkbox filter

Dear all,

Is that possible to have date column in gridview with checkbox column? (FYI: I used kartik gridview)

I tried this but not working, filter was not shown.




...

    [

        'class' => '\kartik\grid\DataColumn',

        'attribute' => 'endDate',

        'format' => ['date', 'php:d-m-Y'],

        'filterType' => GridView::CHECKBOX,

        'filter' => [0 => Yii::t('project', 'Not finish'), 1 => Yii::t('project', 'Finish')],

        'width' => '100px;',

        'hAlign' => 'center',

    ],

...



Any help?

TIA,

Daniel