The field that I am passing to the ui-grid is an html fragment. like this:
<span style="color:BLACK; cursor: pointer; text-decoration: underline;" onclick="openForm(154,68962)">PENDING</span>
And the ui-grid is showing the html code inside the cell. I want to show not the html but the span with the on-click event working. I tried assigning this to the ui-grid field {{ COL_FIELD }} like this but it did not work:
{ displayName: 'Form Status', field: 'FormStatus', headerCellClass: 'center', width: '80', enableColumnMenu: false, cellClass: 'text-center', cellTooltip: true, cellTemplate: {{COL_FIELD}} },