javascript - How to make Datatables sort by images (boolean)? -
so question pretty straight forward. have column in datatables 'favorite'. column has star image can toggle on or off (so, true or false). need datatables sort column whether row favorited or not. using twitter bootstrap glyphicons, class being toggled glyphicon-star or glyphicon-star-empty. how can configure this? thank in advance.
you need write custom sorting plugin. see examples in documentation @ https://datatables.net/release-datatables/examples/plug-ins/sorting_stype.html.
the essence of should be
$(td).hasclass('glyphicon-star');
Comments
Post a Comment