≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
in .sorting_*
in .sorting_*
jasonw22
Posts: 2
Questions: 0
Answers: 0
April 2014
edited April 2014
in
DataTables 1.10
Is there a way to make DataTables insert into sorted column headers?
Replies
jasonw22
Posts: 2
Questions: 0
Answers: 0
April 2014
Resolved this by adding manually within the th in the html, and added sass to my stylesheet like this:
.sorting_desc span.sort-direction {
@extend .caret;
}
.sorting_asc span.sort-direction {
@extend .caret;
border-top: 0;
border-bottom: $caret-width-base solid;
content: "";
}
allan
Posts: 65,819
Questions: 1
Answers: 10,951
Site admin
April 2014
Yup, probably the best solution for the moment. DataTables 1.10 introduces the concept of 'renderers' which will make this kind of thing possible via plug-ins in future.
Allan
This discussion has been closed.
Replies
.sorting_desc span.sort-direction {
@extend .caret;
}
.sorting_asc span.sort-direction {
@extend .caret;
border-top: 0;
border-bottom: $caret-width-base solid;
content: "";
}
Allan