function ( api, rowIdx, columns ) {
var data = $.map( columns, function ( col, i ) {
return col.hidden ?
'
'+
''+col.title+':'+' | '+
''+col.data+' | '+
'
' :
'';
} ).join('');
return data ?
$('').addClass('table table-bordered table-hover responsive').append( data ) :
false;
}