kartik-v/yii2-editable

Editable::INPUT_DATE - submitOnEnter doesn't work when autoclose=true

Opened this issue · 1 comments

Using the EditableColumn widget along with a DatePicker popup, with the "autoclose" option set to true, if you change the date and then press "enter", the form doesn't submit. When autoclose=false, the data submits if you hit "enter", but the calendar popup stays on screen until it looses focus.

[
    'class'     => 'kartik\grid\EditableColumn',
    'attribute' => 'start_date',                
    'editableOptions' => [    
    'submitOnEnter' => true,                         
    'inputType' => Editable::INPUT_DATE,
    'widgetClass' => 'kartik\datecontrol\DateControl',
    'options' => [
        'pluginOptions' => [
            'autoclose' => true,
            'todayHighlight' => true,
            'todayBtn' => true,
            ],			
        ]
    ],                       
],
stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.