Lines 1225-1231
function update_search_description(
Link Here
|
1225 |
let description = []; |
1225 |
let description = []; |
1226 |
let global_search = table_dt.search(); |
1226 |
let global_search = table_dt.search(); |
1227 |
if (global_search.length) { |
1227 |
if (global_search.length) { |
1228 |
description.push(__("Anywhere: %s").format(global_search)); |
1228 |
description.push(__("anywhere: %s").format(global_search)); |
1229 |
} |
1229 |
} |
1230 |
let additional_searches = []; |
1230 |
let additional_searches = []; |
1231 |
for (f in description_fns) { |
1231 |
for (f in description_fns) { |
Lines 1256-1262
function update_search_description(
Link Here
|
1256 |
|
1256 |
|
1257 |
column_searches.push( |
1257 |
column_searches.push( |
1258 |
"%s=%s".format( |
1258 |
"%s=%s".format( |
1259 |
table_dt.column(i).header().innerHTML, |
1259 |
table_dt.column(i).header().innerHTML.toLowerCase(), |
1260 |
search |
1260 |
search |
1261 |
) |
1261 |
) |
1262 |
); |
1262 |
); |
1263 |
- |
|
|