MCPcopy Create free account
hub / github.com/OpenIntroStat/ims / searchColumn

Function searchColumn

libs/datatables-binding-0.18/datatables.js:364–371  ·  view source on GitHub ↗
(i, value)

Source from the content-addressed store, hash-verified

362
363 // search the i-th column
364 var searchColumn = function(i, value) {
365 var regex = false, ci = true;
366 if (options.search) {
367 regex = options.search.regex,
368 ci = options.search.caseInsensitive !== false;
369 }
370 return table.column(i).search(encode_plus(value), regex, !regex, ci);
371 };
372
373 if (data.filter !== 'none') {
374

Callers 2

funFunction · 0.85
datatables.jsFile · 0.85

Calls 1

encode_plusFunction · 0.85

Tested by

no test coverage detected