2015-09-08 143 views
1

是否有任何方法可以讓我的ng-grid JUST SOME CELLS可編輯?ng-grid可編輯某些單元格

$scope.gridOptionsReports = { 
    data: 'Reports', 
    enableCellEdit: true, 
    columnDefs: [ 
     { field: 'Row', displayName: ' Row ', width: 40 }, 
     { field: 'OperationStatus', displayName: 'Operation', width: 120 }, 
     { field: 'Date', displayName: 'Date', width: 100 }, 
     { field: 'Consideration', displayName: 'Consideration', width: 80 }, 
     { field: 'Description', displayName: 'Description', width: 400 } 
    ] 
}; 

我想讓我的日期說明場editable.But現在我所有的字段進行編輯。 謝謝。

回答

相關問題