http://stackoverflow.com/questions/14372655/jquery-datatables-hide-column-without-removing-it-from-dom
"sClass": "hide_column"
And define hide_column
class in your css like this
.hide_column{
display : none;
}
that should make that column hidden…