将自定义指令添加到ng-grid

时间:2017-02-01 10:55:12

标签: javascript angularjs ng-grid

enter image description here

我可以在ng-grid的输入单元格中添加自定义指令。有人帮助我,我搜索了但无法找到感谢您的帮助

以下是ng-grid

的参考
https://angular-ui.github.io/ui-grid/

1 个答案:

答案 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>'
}