Disable "even" "odd" classes.

Disable "even" "odd" classes.

FrankvGervenFrankvGerven Posts: 1Questions: 0Answers: 0
edited December 2011 in General
Hi,

How can i disable the even/odd classes?

Replies

  • John ArcherJohn Archer Posts: 56Questions: 1Answers: 0
    Hi!

    Don't know whether there is a cleaner way, but I would use fnRowCallback and there call these two lines:

    [code]
    $(nRow).removeClass('odd');
    $(nRow).removeClass('even');
    [/code]

    Regards
  • allanallan Posts: 63,535Questions: 1Answers: 10,475 Site admin
    Set asStripClasses to be an empty array.

    Allan
This discussion has been closed.