我可以在ng-grid的输入单元格中添加自定义指令。有人帮助我,我搜索了但无法找到感谢您的帮助
以下是ng-grid
的参考https://angular-ui.github.io/ui-grid/
答案 0 :(得分:0)
您可以尝试使用custom editable cell templates,如:
{
field: 'name',
cellClass: 'nameCell',
headerClass: 'nameHeader',
editableCellTemplate: '<div your-custom-directive>' +
'<form name="inputForm">' +
'<input type="number" ng-class="\'colt\' + col.uid" ui-grid-editor ng-model="MODEL_COL_FIELD">' +
'</form>' +
'</div>'
}