Skip to content

Instantly share code, notes, and snippets.

View RedhatPH8's full-sized avatar
:octocat:

Ryan G. RedhatPH8

:octocat:
View GitHub Profile
@wsakaren
wsakaren / data_sort_checkbox
Created June 21, 2014 16:18
column sorting with datatables on checkbox
/* Create an array with the values of all the checkboxes in a column */
$.fn.dataTableExt.afnSortData['dom-checkbox'] = function ( oSettings, iColumn )
{
return $.map( oSettings.oApi._fnGetTrNodes(oSettings), function (tr, i) {
return $('td:eq('+iColumn+') input', tr).prop('checked') ? '1' : '0';
} );
}
$('.ratemgr-table').dataTable({