I am using angular ui-grid with angular 1.5.
Currently, when a column is not sorted, it does not show an icon. But I require an icon to be displayed indicating that the column can be sorted. Such as this - fa-sort
The css has a class -
.ui-grid-icon-blank::before {
width: 1em;
content: '\c358';
}
but on changing the content of the icon, the icon does not appear due to another class ui-grid-invisible
applied on it. On removal of that class the priorities are visible as well, which is not required.
Basically, looking for a solution to this issue