Hi all.
I have issue wuth firefox not displaying style "text-decoration: line-through".
I am using jqGrid for displaying list of medications. If medication is not active, it has to be crossed. In my afterInsertRow event i do this:
$('#' + rowid).css({ 'text-decoration': 'line-through', 'color': 'red' })
It works fine for IE and Chrome, but Firefox displays only red text without crossing line. When i look into firebug output, i can see that element has style definition including text-decoration, but it is simply not displaying the way i need. Any help is appreciated. Thanks