jQuery datatables cacher thead

je veux cacher datatable thead si la table n'avez pas toutes les données.

oTable_topics =$('#showTopics').dataTable({
    "bLengthChange": false,
    "bStateSave": true,
    "iDisplayLength": 12,                               
    "bScrollCollapse": true,       
    "bJQueryUI": true,
    "bAutoWidth": false,
    "sAjaxSource": "server_processing.php",
    "sPaginationType": "full_numbers",
    "bProcessing": true
    });
    function clickRowHandler_topics() {
        $('#showTopics tbody tr').bind('click', function () {
            var aData = oTable_topics.fnGetData( this );
            iId_topics = aData[1];
        });
    }

je pense que si le tableau n'avez pas toutes les données cacher thead est bon pour afficher n'importe quel message pour les utilisateurs, comment le cacher?

OriginalL'auteur | 2013-05-28