Doubled sort icons when jQueryUI integration is used
Doubled sort icons when jQueryUI integration is used
bmatasar
Posts: 2Questions: 1Answers: 0
As you can see in the example, the sort icons are doubled (both the icons of standard DataTable and integration are present).
Clear the background image in the dataTables.jqueryui.css to fix the problem:
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting {
background-image: none;
cursor: pointer;
*cursor: hand;
}
This discussion has been closed.
Answers
Sorry, my mistake. I included both css files. Including only the dataTables.jqueryui.css fixes it. Probably I missed it in the documentation.