我有一个带有以下代码的ng-grid:
$scope.gridOptionsReports = {
data: 'Reports',
multiSelect: false,
columnDefs: [
{ field: 'Row', displayName: 'Row', width: 40 },
{ field: 'OperationStatus', displayName: 'Operations ', width: 200 },
{ field: 'Date', displayName: ' Date', cellTemplate: '<input class="fieldtext" type="text" ng-click="reportExistChecker(currentDocumentIndex)" ui-mask="9999/99/99" style="width: 80px; margin-right: 10px; text-align:center;">', width: 100 },
{ field: 'Consideration', displayName: 'Consideration', cellTemplate: '<label>Exist</label><input type="checkbox" ng-click="reportExistChecker(row)">', width: 200 }
]
};
感谢。