2

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.

Sahil
  • 75
  • 7

1 Answers1

0

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.

Vidya Sagar
  • 1,699
  • 3
  • 17
  • 28