Lines 1221-1227
function update_search_description(
Link Here
|
1221 |
let description = []; |
1221 |
let description = []; |
1222 |
let global_search = table_dt.search(); |
1222 |
let global_search = table_dt.search(); |
1223 |
if (global_search.length) { |
1223 |
if (global_search.length) { |
1224 |
description.push(__("Anywhere: %s").format(global_search)); |
1224 |
description.push(__("anywhere: %s").format(global_search)); |
1225 |
} |
1225 |
} |
1226 |
let additional_searches = []; |
1226 |
let additional_searches = []; |
1227 |
for (f in description_fns) { |
1227 |
for (f in description_fns) { |
Lines 1252-1258
function update_search_description(
Link Here
|
1252 |
|
1252 |
|
1253 |
column_searches.push( |
1253 |
column_searches.push( |
1254 |
"%s=%s".format( |
1254 |
"%s=%s".format( |
1255 |
table_dt.column(i).header().innerHTML, |
1255 |
table_dt.column(i).header().innerHTML.toLowerCase(), |
1256 |
search |
1256 |
search |
1257 |
) |
1257 |
) |
1258 |
); |
1258 |
); |
1259 |
- |
|
|