This page requires the DataTables jQuery plugin. Put the ColumnFilterWidgets directory under DataTables/extras/.
To prevent a widget from being generated for a column or columns, set the oColumnFilterWidgets.aiExclude option to an array of column indexes to exclude. In this example the Browsers column is excluded.
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'W<"clear">lfrtip',
"oColumnFilterWidgets": {
"aiExclude": [ 1 ]
}
} );
} );