Add icon instead of text in column

in JQGrid 3.8, is it possible to have an icon instead of text in a column?

I don't think it is possible, but if you have a trick, I would be happy

+3
source share
1 answer

There are many ways to add icons to the grid. The first way: the data that is placed in the column heading ( colNames) or inside the cell data can be HTML data. This way you can easily insert an element <img>into the grid. Another way is to use custom formats . See a few demos here . If the standard jQuery user interface icons contain all the icons you need, I would recommend that you use them.

+5

All Articles