我正在使用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>