Sorting icon appears twice in using FixedColumns plugin

Sorting icon appears twice in using FixedColumns plugin

David123David123 Posts: 11Questions: 0Answers: 0
edited July 2013 in Plug-ins
I am using data tables(Scroller example - 50'000 rows) for my page. Now all header icons(sorting) are working fine.Then I am using
FixedColumns plugin in my page. In first column of the table sorting icon is appears twice.

How to remove one sorting icon from that header?

Replies

  • koosvdkolkkoosvdkolk Posts: 169Questions: 0Answers: 0
    Can you have a look at the element in the DOM (e.g. using Firebug)?

    Normally, a header looks like this:

    [code]
    Rendering engine
    [/code]

    The table sorting icon is added by CSS

    [code]
    .sorting_asc {
    background: url('../images/sort_asc.png') no-repeat center right;
    }
    [/code]
  • koosvdkolkkoosvdkolk Posts: 169Questions: 0Answers: 0
    Hi!

    I cannot tell without knowing what is causing the problem. Firebug should be able to tell you something about the origin of the second icon.

    Please post a test case on http://live.datatables.net/#javascript,html
This discussion has been closed.