为什么Kendo网格列内的Kendo日期选择器需要双击才能打开?

时间:2019-02-20 02:22:00

标签: angular kendo-grid kendo-ui-angular2 kendo-datepicker

我正在使用Kendo UI Angular组件。在Kendo网格中,我有一个Kendo Date选择器控件。当我单击日期选择器时,需要两次单击才能将其打开。 (看起来像是一次单击以专注于该单元格,另一次单击以破坏Kendo日期选择器)。我的代码如下所示。非常感谢。

<kendo-grid-column title="DATE" width="165" format='{0:MM/dd/yyyy}' [locked]="true" field="workDate"
                           [headerStyle]="{'text-align': 'center'}" [style]="{'text-align': 'center'}">
            <ng-template kendoGridCellTemplate let-dataItem>
                <kendo-datepicker [min]="min"
                                  [max]="max" [(value)]="dataItem.workDate" [disabled]="dataItem.isPayPeriod"></kendo-datepicker>
            </ng-template>
        </kendo-grid-column>

0 个答案:

没有答案