0
날짜 선택의 Internet Explorer 10에서 구글 크롬 잘 작동하는
$scope.idCardValidityTracker = {
data: 'data', //Test data
enableCellEditOnFocus: true,
enableRowSelection: false,
columnDefs: [{ field: 'idCardNumber', displayName: 'ID Card Number', visible: true },
{ field: 'validFromDate', displayName: 'Valid From', enableCellEditOnFocus: true, enableCellSelection: true, editableCellTemplate: '</b><input type="date" value="MM-dd-yyyy" ng-class="' + 'colt' + '+ $index" ng-input="COL_FIELD" ng-model="COL_FIELD"/>', cellFilter: 'date:\'MM-dd-yyyy\'' },
{ field: 'validToDate', displayName: 'Valid To', enableCellEditOnFocus: true, enableCellSelection: true, editableCellTemplate: '</b><input type="date" value="MM-dd-yyyy" ng-class="' + 'colt' + '+ $index" ng-input="COL_FIELD" ng-model="COL_FIELD" />', cellFilter: 'date:\'MM-dd-yyyy\'' }]
};
<style>
.gridStyle {
max-height: 170px;
resize: horizontal;
border: 1.5px ridge #fdfef9;
margin-top: 5px;
width: auto;
margin-left: 2px;
resize: both;
}
</style>
<div class="gridStyle" ng-grid="idCardValidityTracker" style="text-align:center; align-items:center;"></div>
NG-그리드의 날짜 선택기 IE10 작업,하지만하지 않는이 문제를 해결하기 위해 나를 도와주세요 발행물.
작동하지 않는다는 의미는 무엇입니까? 플 런커를 만들 수 있습니까? – lmyers
in chrome 날짜 편집 가능한 셀을 클릭 한 후 날짜 선택기 팝업이 나타납니다. 인터넷 익스플로러의 경우 셀을 편집 할 수 있지만 날짜 편집 가능한 셀을 클릭 한 후 팝업이 나타나지 않습니다. –