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

  • SEARCH
  • Home
  • 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 issue with: <form:checkboxes path=roles cssClass=checkbox items=${roleSelections} /> If previous line is used
I have an issue which I could not find answer for across the web.
i have issue regarding Paging using filterexpression. here's the piece of code for filtering
I have issue with sending AJAX body request using jQuery CORS with custom Content-type.
MSSQL database. I have issue to create database using old databases data. Old database
I'm writing an android application and I have issue with edit text. When the
i have done drag and drop using with jquery. here i have issue that
have an issue updating magento product from frontend using a module that its function
I have an issue that, while using sql server 2005 i have executed update
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.