Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 863541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:19:42+00:00 2026-05-15T09:19:42+00:00

I have issue wuth Firefox not displaying style text-decoration: line-through. I am using jqGrid

  • 0

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 <tr> element has style definition including text-decoration, but it is simply not displaying the way I need.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T09:19:43+00:00Added an answer on May 15, 2026 at 9:19 am

    If you modify your code to

    $('#' + ids[1] + " > td").css(
        { 'text-decoration': 'line-through', 'color': 'red' });
    

    if will works. If you use rownumbers: true and don’t want the row number be strikethrough, you can use

    $('#' + ids[1] + " > td:not(.jqgrid-rownum)").css(
        { 'text-decoration': 'line-through', 'color': 'red' });
    

    One more small recommendation: use gridview: true to fill jqGrid more quickly. In this mode the whole table contain will be filled by jqGrid as a siring and will be inserted with one jQurey.append operation. The usage of afterInsertRow event break the rule, because every row will be inserted with a jQurey.append operation and then will be called afterInsertRow. So my recommendation: use gridview: true and don’t use afterInsertRow. To make changes of css use loadComplete or gridComplete instead like:

    jQuery('#list').jqGrid({
        //...
        loadComplete: function() {
            var ids = jQuery('#list').getDataIDs();
            for (var i = 0; i < ids.length; i++) {
                $('#' + ids[i] + ' > td:not(.jqgrid-rownum)').css(
                    { 'text-decoration': 'line-through', 'color': 'red' });
            }
        }
        // ...
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an issue that is driving me a bit nuts: Using a UserProfileManager
We have an issue using the PEAR libraries on Windows from PHP . Pear
I have an issue with using AWK to simply remove a field from a
I have an issue in IE6 but not IE>=7, FF or Chrome. It is
i have issue regarding Paging using filterexpression. here's the piece of code for filtering
MSSQL database. I have issue to create database using old databases data. Old database
i have done drag and drop using with jquery. here i have issue that
I have an issue that on one computer applications developed using the Windows Presentation
Have an issue with the following array... I can't navigate it using $arrayname[0]... it
I have issue with Win2003 that Java Applet Closes IE for Users not Admins.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.