Row Styles and Grades

Row Styles and Grades

AdeptDeveloperAdeptDeveloper Posts: 3Questions: 0Answers: 0
edited April 2010 in General
Hi guys,

Excuse me if I'm completely overlooking something, but I can't figure out what all the styles for Row Grades A-C stand for. I noticed that random rows seem to take on a different style and can't figure out quite why that would be. None of my TR tags have IDs or NAMEs that I would think might key to the other classes. I basically just want even rows grey and odd rows white.

Any help is appreciated. Great tool!

[code]



ID
Category
Parent
Order
Actions





#qCategories.Category_ID#
#qCategories.Category_Name#
#qCategories.Parent_Category_Name#
#qCategories.Order_Nbr#

Edit
Add Subcategory





[/code]

-Steve

Replies

  • AdeptDeveloperAdeptDeveloper Posts: 3Questions: 0Answers: 0
    oh, and I just have simple init:

    [code]

    $(document).ready(function()
    {
    oTable = $('#tblCategories').dataTable({
    "bJQueryUI": true,
    "sPaginationType": "full_numbers"
    });
    } );

    [/code]
  • CassiannoCassianno Posts: 19Questions: 0Answers: 0
    Grades A-C are just used on examples @ usage page (check last column title: CSS Grade) :)

    Remove them as you wish.
  • AdeptDeveloperAdeptDeveloper Posts: 3Questions: 0Answers: 0
    ok, so I removed all of the "grade" classes from the CSS file and now I only have tr.even and tr.odd and the tr.odd class I changed the background and border to make sure it was working and sure enough it changed, but the even class does not change even if I had a 2px border or random background or font color.

    I'm using the jquery ui themeroller, but can't find anything in there that would be overriding it yet.
  • CassiannoCassianno Posts: 19Questions: 0Answers: 0
    Hello Adept,

    Can you upload tables/js u're testing? Or check with firebug if there are really no css overriding?
    By the way, if you're using themeroller, remember that you must change css styles at demo_table_jui.css file, not demo_table.css ;D

    Cheers.
This discussion has been closed.