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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -