我有一个带有可编辑单元格的 ng-grid 表,我正在使用 angular ui datepicker。
{
width: "80px",
field: "EstInvDate",
displayName: "Inv Date",
enableCellEdit: true,
editableCellTemplate: '<input class="form-control" type="text" datepicker-popup="dd MMM yyyy" ng-model="row.entity.EstInvDate" min="minDate" max="\'2015-06-22\'" ng-required="true" />',
cellTemplate: '<div class="ngCellText" ng-class="col.colIndex()">{{row.getProperty(col.field) | date:"dd MMM yy"}}</div>'
},
可编辑单元格工作正常,但在模糊时没有任何反应,编辑框仍显示在网格上。
任何人有任何想法为什么?