TableTools plugin and css for _sorting
TableTools plugin and css for _sorting
mg
Posts: 47Questions: 0Answers: 0
IE 6 has a low market-share, but at least consider the following issue.
In the css for the TableTools plugin, the tr has styling for sorting.
[code]
tr.DTTT_selected.odd td.sorting_1 {
background-color: #9FAFD1;
}
[/code]
This seems to be a problem in at least IE6, though, because sorting
on the primary datatable inherits the sorting declaration for the TableTools sorting.
The result is that the sorted column on the main table picks up the
background-color of "#9FAFD1".
I think this can be fixed by adjusting the css as follows for each "sorting" declaration
in the TableTools css:
[code]
table.DTTT_selectable tr.DTTT_selected.odd td.sorting_1 {
background-color: #9FAFD1;
}
[/code]
In the css for the TableTools plugin, the tr has styling for sorting.
[code]
tr.DTTT_selected.odd td.sorting_1 {
background-color: #9FAFD1;
}
[/code]
This seems to be a problem in at least IE6, though, because sorting
on the primary datatable inherits the sorting declaration for the TableTools sorting.
The result is that the sorted column on the main table picks up the
background-color of "#9FAFD1".
I think this can be fixed by adjusting the css as follows for each "sorting" declaration
in the TableTools css:
[code]
table.DTTT_selectable tr.DTTT_selected.odd td.sorting_1 {
background-color: #9FAFD1;
}
[/code]
This discussion has been closed.