Add 2 options parameters to output.process to call it directly with external data using $.tablesorter.output.process, this allows ajax users to use the output widget for all data via external calls.

This commit is contained in:
Justin F. Hallett 2017-07-04 14:55:20 -06:00
parent c1c55c5688
commit 420e4221e3

View File

@ -131,8 +131,10 @@
return data;
},
process : function(c, wo) {
var mydata, $this, $rows, headers, csvData, len, rowsLen, tmp,
// optional vars $rows and dump added by TheSin to make
// process callable via callback for ajaxPager
process : function(c, wo, $rows, dump) {
var mydata, $this, headers, csvData, len, rowsLen, tmp,
hasStringify = window.JSON && JSON.hasOwnProperty('stringify'),
indx = 0,
tmpData = (wo.output_separator || ',').toLowerCase(),
@ -162,6 +164,7 @@
headers = output.processRow(c, $this, true, outputJSON);
// all tbody rows - do not include widget added rows (e.g. grouping widget headers)
if ( !$rows )
$rows = $el.children('tbody').children('tr').not(c.selectorRemove);
// check for a filter callback function first! because
@ -210,6 +213,9 @@
mydata = outputArray && hasStringify ? JSON.stringify(tmpData) : tmpData.join('\n');
}
if (dump)
return mydata;
// callback; if true returned, continue processing
if ($.isFunction(wo.output_callback)) {
tmp = wo.output_callback(c, mydata, c.pager && c.pager.ajaxObject.url || null);