Hello,
I'm trying to render a glyphicon in a table cell by using the render function to set the cell content to
<span class='glyhicon glyphicon-search'></span>
On loading the page and inspecting the code, the grid cell looks ok:
<td class="pq-grid-cell " pq-col-indx="0">
<span class="glyphicon glyphicon-search">
</span>
</td>
But the icon is not rendering correctly. I get a square block with E00E in it which is the type of icon I would get if the glyphicon library was not being referenced correctly. The icons display correctly in the rest of the web page so I was wondering why they are not showing correctly here.
(I'm using both font-awesome and glyphicons in my webiste and have the same problem with both)
Any ideas?