Add row as parameter to the format function calls #367

The JQuery object for the row is passed to the format functions as 5th
argument.
This commit is contained in:
gknights 2013-08-30 16:26:06 +01:00
parent 1d82261a2c
commit 82f4a55191

View File

@ -452,10 +452,10 @@ ts.addWidget({
ff = ($ths.filter('[data-column="' + i + '"]:last').hasClass('filter-match')) ? xi.search(val) >= 0 : v[i] === x;
} else if (typeof wo.filter_functions[i] === 'function'){
// filter callback( exact cell content, parser normalized content, filter input value, column index )
ff = wo.filter_functions[i](x, c.cache[k].normalized[j][i], v[i], i);
ff = wo.filter_functions[i](x, c.cache[k].normalized[j][i], v[i], i, $tr.eq(j));
} else if (typeof wo.filter_functions[i][v[i]] === 'function'){
// selector option function
ff = wo.filter_functions[i][v[i]](x, c.cache[k].normalized[j][i], v[i], i);
ff = wo.filter_functions[i][v[i]](x, c.cache[k].normalized[j][i], v[i], i, $tr.eq(j));
}
// Look for regex
} else if (wo.filter_regex.regex.test(val)){