|
Lines 852-858
jQuery.fn.dataTable.ext.errMode = function(settings, note, message) {
Link Here
|
| 852 |
|
852 |
|
| 853 |
if ( add_filters ) { |
853 |
if ( add_filters ) { |
| 854 |
var table_dt = table.DataTable(); |
854 |
var table_dt = table.DataTable(); |
| 855 |
// table_dt.on('search', console.log); |
|
|
| 856 |
$(this).find('thead tr:eq(1) th').each( function (i) { |
855 |
$(this).find('thead tr:eq(1) th').each( function (i) { |
| 857 |
var is_searchable = table_dt.settings()[0].aoColumns[i].bSearchable; |
856 |
var is_searchable = table_dt.settings()[0].aoColumns[i].bSearchable; |
| 858 |
if ( is_searchable ) { |
857 |
if ( is_searchable ) { |
| 859 |
- |
|
|