Skip to content

Instantly share code, notes, and snippets.

View RedhatPH8's full-sized avatar
:octocat:

Ryan G. RedhatPH8

:octocat:
View GitHub Profile
@RedhatPH8
RedhatPH8 / data_sort_checkbox
Last active March 8, 2020 03:01 — forked from wsakaren/data_sort_checkbox
column sorting with datatables on checkbox
/**LEGACY DataTables 1.9
/* 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';
} );
}
*//