如何从算法内部访问该列?
var myAwesomeSortFn = function(a,b, rowA, rowB, direction){
// "Need to access the name (field) of column being sorted here";
var column = "No Idea"
console.log("sorting by column " + column );
if (a == b) return 0;
if (a < b) return -1;
if (a > b) return 1;
};