if ( oColumn.bVisible && sExcludeList.indexOf( '|' + i + '|' ) < 0 ) {
if ( sExcludeList.indexOf( '|' + i + '|' ) < 0 ) {
"aoColumns": [
{
"sName": "User",
"mDataProp": "User",
"fnRender": function (oObj) { return '<a href="#">' + oObj.aData[oObj.oSettings.aoColumns[oObj.iDataColumn].mDataProp] + '</a>' ; }
},
for (var i = 0, c = aiRows.length; i < c; i++) {
iRow = aiRows[i];
sValue = $('<div>' + this.fnGetData(iRow, iColumn) + '</div>').text();
// ignore empty values?
if (bIgnoreEmpty == true && sValue.length == 0) continue;
// ignore unique values?
else if (bUnique == true && jQuery.inArray(sValue, asResultData) > -1) continue;
// else push the value onto the result data array
else asResultData.push(sValue);
}
It looks like you're new here. If you want to get involved, click one of these buttons!
Get useful and friendly help straight from the source.