-1

I would like to ask you, if its possible to present the contents of a specific column in a jqGrid table with italics font. I searched for it but couldn't find anything. So is there any way to achieve something like this ?

Thank you.

F.N
  • 401
  • 4
  • 21

1 Answers1

1

First of all you need declare CSS rule which uses some class, for example "myclass":

.myclass { font-style: italic; }

Then you need to add classes: "myclass" property to the column definition of the specific column where you need to have italic text. It's all.

Oleg
  • 220,925
  • 34
  • 403
  • 798