Here is the tutorial link for angular ui-grid editable feature. UI-Grid Editable Link
Every row is editable (not header). But I want to add icon to let the user know that this row or cell is editable.
Here is the tutorial link for angular ui-grid editable feature. UI-Grid Editable Link
Every row is editable (not header). But I want to add icon to let the user know that this row or cell is editable.
You can display using cellTemplate
.
cellTemplate: '<i class="fa fa-pencil-square-o"></i>'
Here is an working Plunkr where the gender icon is placed.
You can replace the icon as per your requirement. Hope this helps.